appiq-solution 1.4.2 → 1.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (94) hide show
  1. package/#Tools/APPIQ-METHOD/.cursor/commands/analyze.md +1 -1
  2. package/#Tools/APPIQ-METHOD/.cursor/commands/appiq.md +1 -1
  3. package/#Tools/APPIQ-METHOD/.cursor/commands/help.md +1 -1
  4. package/#Tools/APPIQ-METHOD/.cursor/commands/story.md +1 -1
  5. package/#Tools/APPIQ-METHOD/bmad-core/agents/init-flow-po.md +219 -0
  6. package/#Tools/APPIQ-METHOD/commands/analyze.md +1 -1
  7. package/#Tools/APPIQ-METHOD/commands/appiq.md +1 -1
  8. package/#Tools/APPIQ-METHOD/commands/help.md +1 -1
  9. package/#Tools/APPIQ-METHOD/commands/story.md +1 -1
  10. package/#Tools/APPIQ-METHOD/package.json +1 -1
  11. package/#Tools/APPIQ-METHOD/tools/appiq-installer.js +196 -104
  12. package/#Tools/APPIQ-METHOD/tools/cli.js +1 -1
  13. package/#Tools/APPIQ-METHOD/tools/setup-ide-commands.js +40 -37
  14. package/#Tools/APPIQ-METHOD/tools/smart-installer.js +16 -13
  15. package/bmad-core/agent-teams/team-all.yaml +14 -0
  16. package/bmad-core/agent-teams/team-flutter-mobile.yaml +114 -0
  17. package/bmad-core/agent-teams/team-fullstack.yaml +28 -0
  18. package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
  19. package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
  20. package/bmad-core/agents/analyst.md +85 -0
  21. package/bmad-core/agents/architect.md +90 -0
  22. package/bmad-core/agents/bmad-master.md +108 -0
  23. package/bmad-core/agents/bmad-orchestrator.md +150 -0
  24. package/bmad-core/agents/bmad-smart-launcher.md +170 -0
  25. package/bmad-core/agents/dev.md +95 -0
  26. package/bmad-core/agents/init-flow-po.md +219 -0
  27. package/bmad-core/agents/pm.md +85 -0
  28. package/bmad-core/agents/po.md +76 -0
  29. package/bmad-core/agents/qa.md +86 -0
  30. package/bmad-core/agents/sm.md +67 -0
  31. package/bmad-core/agents/ux-expert.md +71 -0
  32. package/bmad-core/bmad-core/user-guide.md +0 -0
  33. package/bmad-core/checklists/architect-checklist.md +443 -0
  34. package/bmad-core/checklists/change-checklist.md +182 -0
  35. package/bmad-core/checklists/pm-checklist.md +375 -0
  36. package/bmad-core/checklists/po-master-checklist.md +441 -0
  37. package/bmad-core/checklists/security-validation-checklist.md +332 -0
  38. package/bmad-core/checklists/story-dod-checklist.md +101 -0
  39. package/bmad-core/checklists/story-draft-checklist.md +156 -0
  40. package/bmad-core/core-config.yaml +20 -0
  41. package/bmad-core/core-config.yaml.bak +20 -0
  42. package/bmad-core/data/backend-services-integration.md +686 -0
  43. package/bmad-core/data/bmad-kb.md +803 -0
  44. package/bmad-core/data/brainstorming-techniques.md +36 -0
  45. package/bmad-core/data/elicitation-methods.md +134 -0
  46. package/bmad-core/data/shadcn-ui-integration.md +388 -0
  47. package/bmad-core/data/technical-preferences.md +149 -0
  48. package/bmad-core/enhanced-ide-development-workflow.md +43 -0
  49. package/bmad-core/tasks/advanced-elicitation.md +117 -0
  50. package/bmad-core/tasks/brownfield-create-epic.md +160 -0
  51. package/bmad-core/tasks/brownfield-create-story.md +147 -0
  52. package/bmad-core/tasks/correct-course.md +70 -0
  53. package/bmad-core/tasks/create-brownfield-story.md +304 -0
  54. package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
  55. package/bmad-core/tasks/create-flutter-story.md +197 -0
  56. package/bmad-core/tasks/create-next-story.md +112 -0
  57. package/bmad-core/tasks/document-project.md +341 -0
  58. package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
  59. package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
  60. package/bmad-core/tasks/index-docs.md +179 -0
  61. package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
  62. package/bmad-core/tasks/kb-mode-interaction.md +75 -0
  63. package/bmad-core/tasks/review-story.md +145 -0
  64. package/bmad-core/tasks/shard-doc.md +187 -0
  65. package/bmad-core/tasks/smart-project-analysis.md +289 -0
  66. package/bmad-core/tasks/validate-next-story.md +134 -0
  67. package/bmad-core/templates/architecture-tmpl.yaml +650 -0
  68. package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  69. package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
  70. package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
  71. package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
  72. package/bmad-core/templates/flutter-mobile-prd-tmpl.yaml +330 -0
  73. package/bmad-core/templates/flutter-story-tmpl.yaml +376 -0
  74. package/bmad-core/templates/flutter-ui-spec-tmpl.yaml +415 -0
  75. package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
  76. package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
  77. package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
  78. package/bmad-core/templates/market-research-tmpl.yaml +252 -0
  79. package/bmad-core/templates/prd-tmpl.yaml +202 -0
  80. package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
  81. package/bmad-core/templates/story-tmpl.yaml +137 -0
  82. package/bmad-core/user-guide.md +251 -0
  83. package/bmad-core/workflows/brownfield-fullstack.yaml +311 -0
  84. package/bmad-core/workflows/brownfield-service.yaml +187 -0
  85. package/bmad-core/workflows/brownfield-ui.yaml +197 -0
  86. package/bmad-core/workflows/greenfield-fullstack.yaml +284 -0
  87. package/bmad-core/workflows/greenfield-service.yaml +206 -0
  88. package/bmad-core/workflows/greenfield-ui.yaml +235 -0
  89. package/bmad-core/working-in-the-brownfield.md +373 -0
  90. package/package.json +1 -1
  91. package/tools/appiq-installer.js +196 -104
  92. package/tools/cli.js +1 -1
  93. package/tools/setup-ide-commands.js +40 -37
  94. package/tools/smart-installer.js +16 -13
@@ -0,0 +1,206 @@
1
+ workflow:
2
+ id: greenfield-service
3
+ name: Greenfield Service/API Development
4
+ description: >-
5
+ Agent workflow for building backend services from concept to development.
6
+ Supports both comprehensive planning for complex services and rapid prototyping for simple APIs.
7
+ type: greenfield
8
+ project_types:
9
+ - rest-api
10
+ - graphql-api
11
+ - microservice
12
+ - backend-service
13
+ - api-prototype
14
+ - simple-service
15
+
16
+ sequence:
17
+ - agent: analyst
18
+ creates: project-brief.md
19
+ optional_steps:
20
+ - brainstorming_session
21
+ - market_research_prompt
22
+ notes: "Can do brainstorming first, then optional deep research before creating project brief. SAVE OUTPUT: Copy final project-brief.md to your project's docs/ folder."
23
+
24
+ - agent: pm
25
+ creates: prd.md
26
+ requires: project-brief.md
27
+ notes: "Creates PRD from project brief using prd-tmpl, focused on API/service requirements. SAVE OUTPUT: Copy final prd.md to your project's docs/ folder."
28
+
29
+ - agent: architect
30
+ creates: architecture.md
31
+ requires: prd.md
32
+ optional_steps:
33
+ - technical_research_prompt
34
+ notes: "Creates backend/service architecture using architecture-tmpl. May suggest changes to PRD stories or new stories. SAVE OUTPUT: Copy final architecture.md to your project's docs/ folder."
35
+
36
+ - agent: pm
37
+ updates: prd.md (if needed)
38
+ requires: architecture.md
39
+ condition: architecture_suggests_prd_changes
40
+ notes: "If architect suggests story changes, update PRD and re-export the complete unredacted prd.md to docs/ folder."
41
+
42
+ - agent: po
43
+ validates: all_artifacts
44
+ uses: po-master-checklist
45
+ notes: "Validates all documents for consistency and completeness. May require updates to any document."
46
+
47
+ - agent: various
48
+ updates: any_flagged_documents
49
+ condition: po_checklist_issues
50
+ notes: "If PO finds issues, return to relevant agent to fix and re-export updated documents to docs/ folder."
51
+
52
+ - agent: po
53
+ action: shard_documents
54
+ creates: sharded_docs
55
+ requires: all_artifacts_in_project
56
+ notes: |
57
+ Shard documents for IDE development:
58
+ - Option A: Use PO agent to shard: @po then ask to shard docs/prd.md
59
+ - Option B: Manual: Drag shard-doc task + docs/prd.md into chat
60
+ - Creates docs/prd/ and docs/architecture/ folders with sharded content
61
+
62
+ - agent: sm
63
+ action: create_story
64
+ creates: story.md
65
+ requires: sharded_docs
66
+ repeats: for_each_epic
67
+ notes: |
68
+ Story creation cycle:
69
+ - SM Agent (New Chat): @sm → *create
70
+ - Creates next story from sharded docs
71
+ - Story starts in "Draft" status
72
+
73
+ - agent: analyst/pm
74
+ action: review_draft_story
75
+ updates: story.md
76
+ requires: story.md
77
+ optional: true
78
+ condition: user_wants_story_review
79
+ notes: |
80
+ OPTIONAL: Review and approve draft story
81
+ - NOTE: story-review task coming soon
82
+ - Review story completeness and alignment
83
+ - Update story status: Draft → Approved
84
+
85
+ - agent: dev
86
+ action: implement_story
87
+ creates: implementation_files
88
+ requires: story.md
89
+ notes: |
90
+ Dev Agent (New Chat): @dev
91
+ - Implements approved story
92
+ - Updates File List with all changes
93
+ - Marks story as "Review" when complete
94
+
95
+ - agent: qa
96
+ action: review_implementation
97
+ updates: implementation_files
98
+ requires: implementation_files
99
+ optional: true
100
+ notes: |
101
+ OPTIONAL: QA Agent (New Chat): @qa → review-story
102
+ - Senior dev review with refactoring ability
103
+ - Fixes small issues directly
104
+ - Leaves checklist for remaining items
105
+ - Updates story status (Review → Done or stays Review)
106
+
107
+ - agent: dev
108
+ action: address_qa_feedback
109
+ updates: implementation_files
110
+ condition: qa_left_unchecked_items
111
+ notes: |
112
+ If QA left unchecked items:
113
+ - Dev Agent (New Chat): Address remaining items
114
+ - Return to QA for final approval
115
+
116
+ - repeat_development_cycle:
117
+ action: continue_for_all_stories
118
+ notes: |
119
+ Repeat story cycle (SM → Dev → QA) for all epic stories
120
+ Continue until all stories in PRD are complete
121
+
122
+ - agent: po
123
+ action: epic_retrospective
124
+ creates: epic-retrospective.md
125
+ condition: epic_complete
126
+ optional: true
127
+ notes: |
128
+ OPTIONAL: After epic completion
129
+ - NOTE: epic-retrospective task coming soon
130
+ - Validate epic was completed correctly
131
+ - Document learnings and improvements
132
+
133
+ - workflow_end:
134
+ action: project_complete
135
+ notes: |
136
+ All stories implemented and reviewed!
137
+ Service development phase complete.
138
+
139
+ Reference: {root}/data/bmad-kb.md#IDE Development Workflow
140
+
141
+ flow_diagram: |
142
+ ```mermaid
143
+ graph TD
144
+ A[Start: Service Development] --> B[analyst: project-brief.md]
145
+ B --> C[pm: prd.md]
146
+ C --> D[architect: architecture.md]
147
+ D --> E{Architecture suggests PRD changes?}
148
+ E -->|Yes| F[pm: update prd.md]
149
+ E -->|No| G[po: validate all artifacts]
150
+ F --> G
151
+ G --> H{PO finds issues?}
152
+ H -->|Yes| I[Return to relevant agent for fixes]
153
+ H -->|No| J[po: shard documents]
154
+ I --> G
155
+
156
+ J --> K[sm: create story]
157
+ K --> L{Review draft story?}
158
+ L -->|Yes| M[analyst/pm: review & approve story]
159
+ L -->|No| N[dev: implement story]
160
+ M --> N
161
+ N --> O{QA review?}
162
+ O -->|Yes| P[qa: review implementation]
163
+ O -->|No| Q{More stories?}
164
+ P --> R{QA found issues?}
165
+ R -->|Yes| S[dev: address QA feedback]
166
+ R -->|No| Q
167
+ S --> P
168
+ Q -->|Yes| K
169
+ Q -->|No| T{Epic retrospective?}
170
+ T -->|Yes| U[po: epic retrospective]
171
+ T -->|No| V[Project Complete]
172
+ U --> V
173
+
174
+ B -.-> B1[Optional: brainstorming]
175
+ B -.-> B2[Optional: market research]
176
+ D -.-> D1[Optional: technical research]
177
+
178
+ style V fill:#90EE90
179
+ style J fill:#ADD8E6
180
+ style K fill:#ADD8E6
181
+ style N fill:#ADD8E6
182
+ style B fill:#FFE4B5
183
+ style C fill:#FFE4B5
184
+ style D fill:#FFE4B5
185
+ style M fill:#F0E68C
186
+ style P fill:#F0E68C
187
+ style U fill:#F0E68C
188
+ ```
189
+
190
+ decision_guidance:
191
+ when_to_use:
192
+ - Building production APIs or microservices
193
+ - Multiple endpoints and complex business logic
194
+ - Need comprehensive documentation and testing
195
+ - Multiple team members will be involved
196
+ - Long-term maintenance expected
197
+ - Enterprise or external-facing APIs
198
+
199
+ handoff_prompts:
200
+ analyst_to_pm: "Project brief is complete. Save it as docs/project-brief.md in your project, then create the PRD."
201
+ pm_to_architect: "PRD is ready. Save it as docs/prd.md in your project, then create the service architecture."
202
+ architect_review: "Architecture complete. Save it as docs/architecture.md. Do you suggest any changes to the PRD stories or need new stories added?"
203
+ architect_to_pm: "Please update the PRD with the suggested story changes, then re-export the complete prd.md to docs/."
204
+ updated_to_po: "All documents ready in docs/ folder. Please validate all artifacts for consistency."
205
+ po_issues: "PO found issues with [document]. Please return to [agent] to fix and re-save the updated document."
206
+ complete: "All planning artifacts validated and saved in docs/ folder. Move to IDE environment to begin development."
@@ -0,0 +1,235 @@
1
+ workflow:
2
+ id: greenfield-ui
3
+ name: Greenfield UI/Frontend Development
4
+ description: >-
5
+ Agent workflow for building frontend applications from concept to development.
6
+ Supports both comprehensive planning for complex UIs and rapid prototyping for simple interfaces.
7
+ type: greenfield
8
+ project_types:
9
+ - spa
10
+ - mobile-app
11
+ - micro-frontend
12
+ - static-site
13
+ - ui-prototype
14
+ - simple-interface
15
+
16
+ sequence:
17
+ - agent: analyst
18
+ creates: project-brief.md
19
+ optional_steps:
20
+ - brainstorming_session
21
+ - market_research_prompt
22
+ notes: "Can do brainstorming first, then optional deep research before creating project brief. SAVE OUTPUT: Copy final project-brief.md to your project's docs/ folder."
23
+
24
+ - agent: pm
25
+ creates: prd.md
26
+ requires: project-brief.md
27
+ notes: "Creates PRD from project brief using prd-tmpl, focused on UI/frontend requirements. SAVE OUTPUT: Copy final prd.md to your project's docs/ folder."
28
+
29
+ - agent: ux-expert
30
+ creates: front-end-spec.md
31
+ requires: prd.md
32
+ optional_steps:
33
+ - user_research_prompt
34
+ notes: "Creates UI/UX specification using front-end-spec-tmpl. SAVE OUTPUT: Copy final front-end-spec.md to your project's docs/ folder."
35
+
36
+ - agent: ux-expert
37
+ creates: v0_prompt (optional)
38
+ requires: front-end-spec.md
39
+ condition: user_wants_ai_generation
40
+ notes: "OPTIONAL BUT RECOMMENDED: Generate AI UI prompt for tools like v0, Lovable, etc. Use the generate-ai-frontend-prompt task. User can then generate UI in external tool and download project structure."
41
+
42
+ - agent: architect
43
+ creates: front-end-architecture.md
44
+ requires: front-end-spec.md
45
+ optional_steps:
46
+ - technical_research_prompt
47
+ - review_generated_ui_structure
48
+ notes: "Creates frontend architecture using front-end-architecture-tmpl. If user generated UI with v0/Lovable, can incorporate the project structure into architecture. May suggest changes to PRD stories or new stories. SAVE OUTPUT: Copy final front-end-architecture.md to your project's docs/ folder."
49
+
50
+ - agent: pm
51
+ updates: prd.md (if needed)
52
+ requires: front-end-architecture.md
53
+ condition: architecture_suggests_prd_changes
54
+ notes: "If architect suggests story changes, update PRD and re-export the complete unredacted prd.md to docs/ folder."
55
+
56
+ - agent: po
57
+ validates: all_artifacts
58
+ uses: po-master-checklist
59
+ notes: "Validates all documents for consistency and completeness. May require updates to any document."
60
+
61
+ - agent: various
62
+ updates: any_flagged_documents
63
+ condition: po_checklist_issues
64
+ notes: "If PO finds issues, return to relevant agent to fix and re-export updated documents to docs/ folder."
65
+
66
+ - project_setup_guidance:
67
+ action: guide_project_structure
68
+ condition: user_has_generated_ui
69
+ notes: "If user generated UI with v0/Lovable: For polyrepo setup, place downloaded project in separate frontend repo. For monorepo, place in apps/web or frontend/ directory. Review architecture document for specific guidance."
70
+
71
+ - agent: po
72
+ action: shard_documents
73
+ creates: sharded_docs
74
+ requires: all_artifacts_in_project
75
+ notes: |
76
+ Shard documents for IDE development:
77
+ - Option A: Use PO agent to shard: @po then ask to shard docs/prd.md
78
+ - Option B: Manual: Drag shard-doc task + docs/prd.md into chat
79
+ - Creates docs/prd/ and docs/architecture/ folders with sharded content
80
+
81
+ - agent: sm
82
+ action: create_story
83
+ creates: story.md
84
+ requires: sharded_docs
85
+ repeats: for_each_epic
86
+ notes: |
87
+ Story creation cycle:
88
+ - SM Agent (New Chat): @sm → *create
89
+ - Creates next story from sharded docs
90
+ - Story starts in "Draft" status
91
+
92
+ - agent: analyst/pm
93
+ action: review_draft_story
94
+ updates: story.md
95
+ requires: story.md
96
+ optional: true
97
+ condition: user_wants_story_review
98
+ notes: |
99
+ OPTIONAL: Review and approve draft story
100
+ - NOTE: story-review task coming soon
101
+ - Review story completeness and alignment
102
+ - Update story status: Draft → Approved
103
+
104
+ - agent: dev
105
+ action: implement_story
106
+ creates: implementation_files
107
+ requires: story.md
108
+ notes: |
109
+ Dev Agent (New Chat): @dev
110
+ - Implements approved story
111
+ - Updates File List with all changes
112
+ - Marks story as "Review" when complete
113
+
114
+ - agent: qa
115
+ action: review_implementation
116
+ updates: implementation_files
117
+ requires: implementation_files
118
+ optional: true
119
+ notes: |
120
+ OPTIONAL: QA Agent (New Chat): @qa → review-story
121
+ - Senior dev review with refactoring ability
122
+ - Fixes small issues directly
123
+ - Leaves checklist for remaining items
124
+ - Updates story status (Review → Done or stays Review)
125
+
126
+ - agent: dev
127
+ action: address_qa_feedback
128
+ updates: implementation_files
129
+ condition: qa_left_unchecked_items
130
+ notes: |
131
+ If QA left unchecked items:
132
+ - Dev Agent (New Chat): Address remaining items
133
+ - Return to QA for final approval
134
+
135
+ - repeat_development_cycle:
136
+ action: continue_for_all_stories
137
+ notes: |
138
+ Repeat story cycle (SM → Dev → QA) for all epic stories
139
+ Continue until all stories in PRD are complete
140
+
141
+ - agent: po
142
+ action: epic_retrospective
143
+ creates: epic-retrospective.md
144
+ condition: epic_complete
145
+ optional: true
146
+ notes: |
147
+ OPTIONAL: After epic completion
148
+ - NOTE: epic-retrospective task coming soon
149
+ - Validate epic was completed correctly
150
+ - Document learnings and improvements
151
+
152
+ - workflow_end:
153
+ action: project_complete
154
+ notes: |
155
+ All stories implemented and reviewed!
156
+ Project development phase complete.
157
+
158
+ Reference: {root}/data/bmad-kb.md#IDE Development Workflow
159
+
160
+ flow_diagram: |
161
+ ```mermaid
162
+ graph TD
163
+ A[Start: UI Development] --> B[analyst: project-brief.md]
164
+ B --> C[pm: prd.md]
165
+ C --> D[ux-expert: front-end-spec.md]
166
+ D --> D2{Generate v0 prompt?}
167
+ D2 -->|Yes| D3[ux-expert: create v0 prompt]
168
+ D2 -->|No| E[architect: front-end-architecture.md]
169
+ D3 --> D4[User: generate UI in v0/Lovable]
170
+ D4 --> E
171
+ E --> F{Architecture suggests PRD changes?}
172
+ F -->|Yes| G[pm: update prd.md]
173
+ F -->|No| H[po: validate all artifacts]
174
+ G --> H
175
+ H --> I{PO finds issues?}
176
+ I -->|Yes| J[Return to relevant agent for fixes]
177
+ I -->|No| K[po: shard documents]
178
+ J --> H
179
+
180
+ K --> L[sm: create story]
181
+ L --> M{Review draft story?}
182
+ M -->|Yes| N[analyst/pm: review & approve story]
183
+ M -->|No| O[dev: implement story]
184
+ N --> O
185
+ O --> P{QA review?}
186
+ P -->|Yes| Q[qa: review implementation]
187
+ P -->|No| R{More stories?}
188
+ Q --> S{QA found issues?}
189
+ S -->|Yes| T[dev: address QA feedback]
190
+ S -->|No| R
191
+ T --> Q
192
+ R -->|Yes| L
193
+ R -->|No| U{Epic retrospective?}
194
+ U -->|Yes| V[po: epic retrospective]
195
+ U -->|No| W[Project Complete]
196
+ V --> W
197
+
198
+ B -.-> B1[Optional: brainstorming]
199
+ B -.-> B2[Optional: market research]
200
+ D -.-> D1[Optional: user research]
201
+ E -.-> E1[Optional: technical research]
202
+
203
+ style W fill:#90EE90
204
+ style K fill:#ADD8E6
205
+ style L fill:#ADD8E6
206
+ style O fill:#ADD8E6
207
+ style D3 fill:#E6E6FA
208
+ style D4 fill:#E6E6FA
209
+ style B fill:#FFE4B5
210
+ style C fill:#FFE4B5
211
+ style D fill:#FFE4B5
212
+ style E fill:#FFE4B5
213
+ style N fill:#F0E68C
214
+ style Q fill:#F0E68C
215
+ style V fill:#F0E68C
216
+ ```
217
+
218
+ decision_guidance:
219
+ when_to_use:
220
+ - Building production frontend applications
221
+ - Multiple views/pages with complex interactions
222
+ - Need comprehensive UI/UX design and testing
223
+ - Multiple team members will be involved
224
+ - Long-term maintenance expected
225
+ - Customer-facing applications
226
+
227
+ handoff_prompts:
228
+ analyst_to_pm: "Project brief is complete. Save it as docs/project-brief.md in your project, then create the PRD."
229
+ pm_to_ux: "PRD is ready. Save it as docs/prd.md in your project, then create the UI/UX specification."
230
+ ux_to_architect: "UI/UX spec complete. Save it as docs/front-end-spec.md in your project, then create the frontend architecture."
231
+ architect_review: "Frontend architecture complete. Save it as docs/front-end-architecture.md. Do you suggest any changes to the PRD stories or need new stories added?"
232
+ architect_to_pm: "Please update the PRD with the suggested story changes, then re-export the complete prd.md to docs/."
233
+ updated_to_po: "All documents ready in docs/ folder. Please validate all artifacts for consistency."
234
+ po_issues: "PO found issues with [document]. Please return to [agent] to fix and re-save the updated document."
235
+ complete: "All planning artifacts validated and saved in docs/ folder. Move to IDE environment to begin development."