chore: Update brownfield-ui.yml

- Update descriptions, status messages, and artifact names in brownfield-ui workflows
This commit is contained in:
Miguel Tomas 2025-06-28 19:19:03 +03:00 committed by GitHub
parent 3914d8b3e7
commit 67bde1fd4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 14 additions and 14 deletions

View File

@ -19,29 +19,29 @@ workflow:
notes: "Review existing frontend application, user feedback, analytics data, and identify improvement areas." notes: "Review existing frontend application, user feedback, analytics data, and identify improvement areas."
- agent: pm - agent: pm
creates: brownfield-prd.md creates: prd.md
uses: brownfield-prd-tmpl uses: brownfield-prd-tmpl
requires: existing_ui_analysis requires: existing_ui_analysis
notes: "Creates comprehensive brownfield PRD focused on UI enhancement with existing system analysis. SAVE OUTPUT: Copy final brownfield-prd.md to your project's docs/ folder." notes: "Creates comprehensive PRD focused on UI enhancement with existing system analysis. SAVE OUTPUT: Copy final prd.md to your project's docs/ folder."
- agent: ux-expert - agent: ux-expert
creates: front-end-spec.md creates: front-end-spec.md
uses: front-end-spec-tmpl uses: front-end-spec-tmpl
requires: brownfield-prd.md requires: prd.md
notes: "Creates UI/UX specification for brownfield enhancement that integrates with existing design patterns. SAVE OUTPUT: Copy final front-end-spec.md to your project's docs/ folder." notes: "Creates UI/UX specification that integrates with existing design patterns. SAVE OUTPUT: Copy final front-end-spec.md to your project's docs/ folder."
- agent: architect - agent: architect
creates: brownfield-architecture.md creates: architecture.md
uses: brownfield-architecture-tmpl uses: brownfield-architecture-tmpl
requires: requires:
- brownfield-prd.md - prd.md
- front-end-spec.md - front-end-spec.md
notes: "Creates brownfield frontend architecture with component integration strategy and migration planning. SAVE OUTPUT: Copy final brownfield-architecture.md to your project's docs/ folder." notes: "Creates frontend architecture with component integration strategy and migration planning. SAVE OUTPUT: Copy final architecture.md to your project's docs/ folder."
- agent: po - agent: po
validates: all_artifacts validates: all_artifacts
uses: po-master-checklist uses: po-master-checklist
notes: "Validates all brownfield documents for UI integration safety and design consistency. May require updates to any document." notes: "Validates all documents for UI integration safety and design consistency. May require updates to any document."
- agent: various - agent: various
updates: any_flagged_documents updates: any_flagged_documents
@ -91,9 +91,9 @@ workflow:
```mermaid ```mermaid
graph TD graph TD
A[Start: UI Enhancement] --> B[analyst: analyze existing UI] A[Start: UI Enhancement] --> B[analyst: analyze existing UI]
B --> C[pm: brownfield-prd.md] B --> C[pm: prd.md]
C --> D[ux-expert: front-end-spec.md] C --> D[ux-expert: front-end-spec.md]
D --> E[architect: brownfield-architecture.md] D --> E[architect: architecture.md]
E --> F[po: validate with po-master-checklist] E --> F[po: validate with po-master-checklist]
F --> G{PO finds issues?} F --> G{PO finds issues?}
G -->|Yes| H[Return to relevant agent for fixes] G -->|Yes| H[Return to relevant agent for fixes]
@ -115,9 +115,9 @@ workflow:
- Multiple team members will work on related changes - Multiple team members will work on related changes
handoff_prompts: handoff_prompts:
analyst_to_pm: "UI analysis complete. Create comprehensive brownfield PRD with UI integration strategy." analyst_to_pm: "UI analysis complete. Create comprehensive PRD with UI integration strategy."
pm_to_ux: "Brownfield PRD ready. Save it as docs/brownfield-prd.md, then create the UI/UX specification." pm_to_ux: "PRD ready. Save it as docs/prd.md, then create the UI/UX specification."
ux_to_architect: "UI/UX spec complete. Save it as docs/front-end-spec.md, then create the frontend architecture." ux_to_architect: "UI/UX spec complete. Save it as docs/front-end-spec.md, then create the frontend architecture."
architect_to_po: "Architecture complete. Save it as docs/brownfield-architecture.md. Please validate all artifacts for UI integration safety." architect_to_po: "Architecture complete. Save it as docs/architecture.md. Please validate all artifacts for UI integration safety."
po_issues: "PO found issues with [document]. Please return to [agent] to fix and re-save the updated document." po_issues: "PO found issues with [document]. Please return to [agent] to fix and re-save the updated document."
complete: "All brownfield planning artifacts validated and saved in docs/ folder. Move to IDE environment to begin development." complete: "All planning artifacts validated and saved in docs/ folder. Move to IDE environment to begin development."