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.
- package/#Tools/APPIQ-METHOD/.cursor/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/.cursor/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/bmad-core/agents/init-flow-po.md +219 -0
- package/#Tools/APPIQ-METHOD/commands/analyze.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/appiq.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/help.md +1 -1
- package/#Tools/APPIQ-METHOD/commands/story.md +1 -1
- package/#Tools/APPIQ-METHOD/package.json +1 -1
- package/#Tools/APPIQ-METHOD/tools/appiq-installer.js +196 -104
- package/#Tools/APPIQ-METHOD/tools/cli.js +1 -1
- package/#Tools/APPIQ-METHOD/tools/setup-ide-commands.js +40 -37
- package/#Tools/APPIQ-METHOD/tools/smart-installer.js +16 -13
- package/bmad-core/agent-teams/team-all.yaml +14 -0
- package/bmad-core/agent-teams/team-flutter-mobile.yaml +114 -0
- package/bmad-core/agent-teams/team-fullstack.yaml +28 -0
- package/bmad-core/agent-teams/team-ide-minimal.yaml +10 -0
- package/bmad-core/agent-teams/team-no-ui.yaml +13 -0
- package/bmad-core/agents/analyst.md +85 -0
- package/bmad-core/agents/architect.md +90 -0
- package/bmad-core/agents/bmad-master.md +108 -0
- package/bmad-core/agents/bmad-orchestrator.md +150 -0
- package/bmad-core/agents/bmad-smart-launcher.md +170 -0
- package/bmad-core/agents/dev.md +95 -0
- package/bmad-core/agents/init-flow-po.md +219 -0
- package/bmad-core/agents/pm.md +85 -0
- package/bmad-core/agents/po.md +76 -0
- package/bmad-core/agents/qa.md +86 -0
- package/bmad-core/agents/sm.md +67 -0
- package/bmad-core/agents/ux-expert.md +71 -0
- package/bmad-core/bmad-core/user-guide.md +0 -0
- package/bmad-core/checklists/architect-checklist.md +443 -0
- package/bmad-core/checklists/change-checklist.md +182 -0
- package/bmad-core/checklists/pm-checklist.md +375 -0
- package/bmad-core/checklists/po-master-checklist.md +441 -0
- package/bmad-core/checklists/security-validation-checklist.md +332 -0
- package/bmad-core/checklists/story-dod-checklist.md +101 -0
- package/bmad-core/checklists/story-draft-checklist.md +156 -0
- package/bmad-core/core-config.yaml +20 -0
- package/bmad-core/core-config.yaml.bak +20 -0
- package/bmad-core/data/backend-services-integration.md +686 -0
- package/bmad-core/data/bmad-kb.md +803 -0
- package/bmad-core/data/brainstorming-techniques.md +36 -0
- package/bmad-core/data/elicitation-methods.md +134 -0
- package/bmad-core/data/shadcn-ui-integration.md +388 -0
- package/bmad-core/data/technical-preferences.md +149 -0
- package/bmad-core/enhanced-ide-development-workflow.md +43 -0
- package/bmad-core/tasks/advanced-elicitation.md +117 -0
- package/bmad-core/tasks/brownfield-create-epic.md +160 -0
- package/bmad-core/tasks/brownfield-create-story.md +147 -0
- package/bmad-core/tasks/correct-course.md +70 -0
- package/bmad-core/tasks/create-brownfield-story.md +304 -0
- package/bmad-core/tasks/create-deep-research-prompt.md +289 -0
- package/bmad-core/tasks/create-flutter-story.md +197 -0
- package/bmad-core/tasks/create-next-story.md +112 -0
- package/bmad-core/tasks/document-project.md +341 -0
- package/bmad-core/tasks/facilitate-brainstorming-session.md +136 -0
- package/bmad-core/tasks/generate-ai-frontend-prompt.md +51 -0
- package/bmad-core/tasks/index-docs.md +179 -0
- package/bmad-core/tasks/intelligent-epic-creation.md +234 -0
- package/bmad-core/tasks/kb-mode-interaction.md +75 -0
- package/bmad-core/tasks/review-story.md +145 -0
- package/bmad-core/tasks/shard-doc.md +187 -0
- package/bmad-core/tasks/smart-project-analysis.md +289 -0
- package/bmad-core/tasks/validate-next-story.md +134 -0
- package/bmad-core/templates/architecture-tmpl.yaml +650 -0
- package/bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
- package/bmad-core/templates/brownfield-architecture-tmpl.yaml +476 -0
- package/bmad-core/templates/brownfield-prd-tmpl.yaml +280 -0
- package/bmad-core/templates/competitor-analysis-tmpl.yaml +293 -0
- package/bmad-core/templates/flutter-mobile-prd-tmpl.yaml +330 -0
- package/bmad-core/templates/flutter-story-tmpl.yaml +376 -0
- package/bmad-core/templates/flutter-ui-spec-tmpl.yaml +415 -0
- package/bmad-core/templates/front-end-architecture-tmpl.yaml +206 -0
- package/bmad-core/templates/front-end-spec-tmpl.yaml +349 -0
- package/bmad-core/templates/fullstack-architecture-tmpl.yaml +812 -0
- package/bmad-core/templates/market-research-tmpl.yaml +252 -0
- package/bmad-core/templates/prd-tmpl.yaml +202 -0
- package/bmad-core/templates/project-brief-tmpl.yaml +221 -0
- package/bmad-core/templates/story-tmpl.yaml +137 -0
- package/bmad-core/user-guide.md +251 -0
- package/bmad-core/workflows/brownfield-fullstack.yaml +311 -0
- package/bmad-core/workflows/brownfield-service.yaml +187 -0
- package/bmad-core/workflows/brownfield-ui.yaml +197 -0
- package/bmad-core/workflows/greenfield-fullstack.yaml +284 -0
- package/bmad-core/workflows/greenfield-service.yaml +206 -0
- package/bmad-core/workflows/greenfield-ui.yaml +235 -0
- package/bmad-core/working-in-the-brownfield.md +373 -0
- package/package.json +1 -1
- package/tools/appiq-installer.js +196 -104
- package/tools/cli.js +1 -1
- package/tools/setup-ide-commands.js +40 -37
- package/tools/smart-installer.js +16 -13
@@ -0,0 +1,182 @@
|
|
1
|
+
# Change Navigation Checklist
|
2
|
+
|
3
|
+
**Purpose:** To systematically guide the selected Agent and user through the analysis and planning required when a significant change (pivot, tech issue, missing requirement, failed story) is identified during the BMad workflow.
|
4
|
+
|
5
|
+
**Instructions:** Review each item with the user. Mark `[x]` for completed/confirmed, `[N/A]` if not applicable, or add notes for discussion points.
|
6
|
+
|
7
|
+
[[LLM: INITIALIZATION INSTRUCTIONS - CHANGE NAVIGATION
|
8
|
+
|
9
|
+
Changes during development are inevitable, but how we handle them determines project success or failure.
|
10
|
+
|
11
|
+
Before proceeding, understand:
|
12
|
+
|
13
|
+
1. This checklist is for SIGNIFICANT changes that affect the project direction
|
14
|
+
2. Minor adjustments within a story don't require this process
|
15
|
+
3. The goal is to minimize wasted work while adapting to new realities
|
16
|
+
4. User buy-in is critical - they must understand and approve changes
|
17
|
+
|
18
|
+
Required context:
|
19
|
+
|
20
|
+
- The triggering story or issue
|
21
|
+
- Current project state (completed stories, current epic)
|
22
|
+
- Access to PRD, architecture, and other key documents
|
23
|
+
- Understanding of remaining work planned
|
24
|
+
|
25
|
+
APPROACH:
|
26
|
+
This is an interactive process with the user. Work through each section together, discussing implications and options. The user makes final decisions, but provide expert guidance on technical feasibility and impact.
|
27
|
+
|
28
|
+
REMEMBER: Changes are opportunities to improve, not failures. Handle them professionally and constructively.]]
|
29
|
+
|
30
|
+
---
|
31
|
+
|
32
|
+
## 1. Understand the Trigger & Context
|
33
|
+
|
34
|
+
[[LLM: Start by fully understanding what went wrong and why. Don't jump to solutions yet. Ask probing questions:
|
35
|
+
|
36
|
+
- What exactly happened that triggered this review?
|
37
|
+
- Is this a one-time issue or symptomatic of a larger problem?
|
38
|
+
- Could this have been anticipated earlier?
|
39
|
+
- What assumptions were incorrect?
|
40
|
+
|
41
|
+
Be specific and factual, not blame-oriented.]]
|
42
|
+
|
43
|
+
- [ ] **Identify Triggering Story:** Clearly identify the story (or stories) that revealed the issue.
|
44
|
+
- [ ] **Define the Issue:** Articulate the core problem precisely.
|
45
|
+
- [ ] Is it a technical limitation/dead-end?
|
46
|
+
- [ ] Is it a newly discovered requirement?
|
47
|
+
- [ ] Is it a fundamental misunderstanding of existing requirements?
|
48
|
+
- [ ] Is it a necessary pivot based on feedback or new information?
|
49
|
+
- [ ] Is it a failed/abandoned story needing a new approach?
|
50
|
+
- [ ] **Assess Initial Impact:** Describe the immediate observed consequences (e.g., blocked progress, incorrect functionality, non-viable tech).
|
51
|
+
- [ ] **Gather Evidence:** Note any specific logs, error messages, user feedback, or analysis that supports the issue definition.
|
52
|
+
|
53
|
+
## 2. Epic Impact Assessment
|
54
|
+
|
55
|
+
[[LLM: Changes ripple through the project structure. Systematically evaluate:
|
56
|
+
|
57
|
+
1. Can we salvage the current epic with modifications?
|
58
|
+
2. Do future epics still make sense given this change?
|
59
|
+
3. Are we creating or eliminating dependencies?
|
60
|
+
4. Does the epic sequence need reordering?
|
61
|
+
|
62
|
+
Think about both immediate and downstream effects.]]
|
63
|
+
|
64
|
+
- [ ] **Analyze Current Epic:**
|
65
|
+
- [ ] Can the current epic containing the trigger story still be completed?
|
66
|
+
- [ ] Does the current epic need modification (story changes, additions, removals)?
|
67
|
+
- [ ] Should the current epic be abandoned or fundamentally redefined?
|
68
|
+
- [ ] **Analyze Future Epics:**
|
69
|
+
- [ ] Review all remaining planned epics.
|
70
|
+
- [ ] Does the issue require changes to planned stories in future epics?
|
71
|
+
- [ ] Does the issue invalidate any future epics?
|
72
|
+
- [ ] Does the issue necessitate the creation of entirely new epics?
|
73
|
+
- [ ] Should the order/priority of future epics be changed?
|
74
|
+
- [ ] **Summarize Epic Impact:** Briefly document the overall effect on the project's epic structure and flow.
|
75
|
+
|
76
|
+
## 3. Artifact Conflict & Impact Analysis
|
77
|
+
|
78
|
+
[[LLM: Documentation drives development in BMad. Check each artifact:
|
79
|
+
|
80
|
+
1. Does this change invalidate documented decisions?
|
81
|
+
2. Are architectural assumptions still valid?
|
82
|
+
3. Do user flows need rethinking?
|
83
|
+
4. Are technical constraints different than documented?
|
84
|
+
|
85
|
+
Be thorough - missed conflicts cause future problems.]]
|
86
|
+
|
87
|
+
- [ ] **Review PRD:**
|
88
|
+
- [ ] Does the issue conflict with the core goals or requirements stated in the PRD?
|
89
|
+
- [ ] Does the PRD need clarification or updates based on the new understanding?
|
90
|
+
- [ ] **Review Architecture Document:**
|
91
|
+
- [ ] Does the issue conflict with the documented architecture (components, patterns, tech choices)?
|
92
|
+
- [ ] Are specific components/diagrams/sections impacted?
|
93
|
+
- [ ] Does the technology list need updating?
|
94
|
+
- [ ] Do data models or schemas need revision?
|
95
|
+
- [ ] Are external API integrations affected?
|
96
|
+
- [ ] **Review Frontend Spec (if applicable):**
|
97
|
+
- [ ] Does the issue conflict with the FE architecture, component library choice, or UI/UX design?
|
98
|
+
- [ ] Are specific FE components or user flows impacted?
|
99
|
+
- [ ] **Review Other Artifacts (if applicable):**
|
100
|
+
- [ ] Consider impact on deployment scripts, IaC, monitoring setup, etc.
|
101
|
+
- [ ] **Summarize Artifact Impact:** List all artifacts requiring updates and the nature of the changes needed.
|
102
|
+
|
103
|
+
## 4. Path Forward Evaluation
|
104
|
+
|
105
|
+
[[LLM: Present options clearly with pros/cons. For each path:
|
106
|
+
|
107
|
+
1. What's the effort required?
|
108
|
+
2. What work gets thrown away?
|
109
|
+
3. What risks are we taking?
|
110
|
+
4. How does this affect timeline?
|
111
|
+
5. Is this sustainable long-term?
|
112
|
+
|
113
|
+
Be honest about trade-offs. There's rarely a perfect solution.]]
|
114
|
+
|
115
|
+
- [ ] **Option 1: Direct Adjustment / Integration:**
|
116
|
+
- [ ] Can the issue be addressed by modifying/adding future stories within the existing plan?
|
117
|
+
- [ ] Define the scope and nature of these adjustments.
|
118
|
+
- [ ] Assess feasibility, effort, and risks of this path.
|
119
|
+
- [ ] **Option 2: Potential Rollback:**
|
120
|
+
- [ ] Would reverting completed stories significantly simplify addressing the issue?
|
121
|
+
- [ ] Identify specific stories/commits to consider for rollback.
|
122
|
+
- [ ] Assess the effort required for rollback.
|
123
|
+
- [ ] Assess the impact of rollback (lost work, data implications).
|
124
|
+
- [ ] Compare the net benefit/cost vs. Direct Adjustment.
|
125
|
+
- [ ] **Option 3: PRD MVP Review & Potential Re-scoping:**
|
126
|
+
- [ ] Is the original PRD MVP still achievable given the issue and constraints?
|
127
|
+
- [ ] Does the MVP scope need reduction (removing features/epics)?
|
128
|
+
- [ ] Do the core MVP goals need modification?
|
129
|
+
- [ ] Are alternative approaches needed to meet the original MVP intent?
|
130
|
+
- [ ] **Extreme Case:** Does the issue necessitate a fundamental replan or potentially a new PRD V2 (to be handled by PM)?
|
131
|
+
- [ ] **Select Recommended Path:** Based on the evaluation, agree on the most viable path forward.
|
132
|
+
|
133
|
+
## 5. Sprint Change Proposal Components
|
134
|
+
|
135
|
+
[[LLM: The proposal must be actionable and clear. Ensure:
|
136
|
+
|
137
|
+
1. The issue is explained in plain language
|
138
|
+
2. Impacts are quantified where possible
|
139
|
+
3. The recommended path has clear rationale
|
140
|
+
4. Next steps are specific and assigned
|
141
|
+
5. Success criteria for the change are defined
|
142
|
+
|
143
|
+
This proposal guides all subsequent work.]]
|
144
|
+
|
145
|
+
(Ensure all agreed-upon points from previous sections are captured in the proposal)
|
146
|
+
|
147
|
+
- [ ] **Identified Issue Summary:** Clear, concise problem statement.
|
148
|
+
- [ ] **Epic Impact Summary:** How epics are affected.
|
149
|
+
- [ ] **Artifact Adjustment Needs:** List of documents to change.
|
150
|
+
- [ ] **Recommended Path Forward:** Chosen solution with rationale.
|
151
|
+
- [ ] **PRD MVP Impact:** Changes to scope/goals (if any).
|
152
|
+
- [ ] **High-Level Action Plan:** Next steps for stories/updates.
|
153
|
+
- [ ] **Agent Handoff Plan:** Identify roles needed (PM, Arch, Design Arch, PO).
|
154
|
+
|
155
|
+
## 6. Final Review & Handoff
|
156
|
+
|
157
|
+
[[LLM: Changes require coordination. Before concluding:
|
158
|
+
|
159
|
+
1. Is the user fully aligned with the plan?
|
160
|
+
2. Do all stakeholders understand the impacts?
|
161
|
+
3. Are handoffs to other agents clear?
|
162
|
+
4. Is there a rollback plan if the change fails?
|
163
|
+
5. How will we validate the change worked?
|
164
|
+
|
165
|
+
Get explicit approval - implicit agreement causes problems.
|
166
|
+
|
167
|
+
FINAL REPORT:
|
168
|
+
After completing the checklist, provide a concise summary:
|
169
|
+
|
170
|
+
- What changed and why
|
171
|
+
- What we're doing about it
|
172
|
+
- Who needs to do what
|
173
|
+
- When we'll know if it worked
|
174
|
+
|
175
|
+
Keep it action-oriented and forward-looking.]]
|
176
|
+
|
177
|
+
- [ ] **Review Checklist:** Confirm all relevant items were discussed.
|
178
|
+
- [ ] **Review Sprint Change Proposal:** Ensure it accurately reflects the discussion and decisions.
|
179
|
+
- [ ] **User Approval:** Obtain explicit user approval for the proposal.
|
180
|
+
- [ ] **Confirm Next Steps:** Reiterate the handoff plan and the next actions to be taken by specific agents.
|
181
|
+
|
182
|
+
---
|
@@ -0,0 +1,375 @@
|
|
1
|
+
# Product Manager (PM) Requirements Checklist
|
2
|
+
|
3
|
+
This checklist serves as a comprehensive framework to ensure the Product Requirements Document (PRD) and Epic definitions are complete, well-structured, and appropriately scoped for MVP development. The PM should systematically work through each item during the product definition process.
|
4
|
+
|
5
|
+
[[LLM: INITIALIZATION INSTRUCTIONS - PM CHECKLIST
|
6
|
+
|
7
|
+
Before proceeding with this checklist, ensure you have access to:
|
8
|
+
|
9
|
+
1. prd.md - The Product Requirements Document (check docs/prd.md)
|
10
|
+
2. Any user research, market analysis, or competitive analysis documents
|
11
|
+
3. Business goals and strategy documents
|
12
|
+
4. Any existing epic definitions or user stories
|
13
|
+
|
14
|
+
IMPORTANT: If the PRD is missing, immediately ask the user for its location or content before proceeding.
|
15
|
+
|
16
|
+
VALIDATION APPROACH:
|
17
|
+
|
18
|
+
1. User-Centric - Every requirement should tie back to user value
|
19
|
+
2. MVP Focus - Ensure scope is truly minimal while viable
|
20
|
+
3. Clarity - Requirements should be unambiguous and testable
|
21
|
+
4. Completeness - All aspects of the product vision are covered
|
22
|
+
5. Feasibility - Requirements are technically achievable
|
23
|
+
|
24
|
+
EXECUTION MODE:
|
25
|
+
Ask the user if they want to work through the checklist:
|
26
|
+
|
27
|
+
- Section by section (interactive mode) - Review each section, present findings, get confirmation before proceeding
|
28
|
+
- All at once (comprehensive mode) - Complete full analysis and present comprehensive report at end]]
|
29
|
+
|
30
|
+
## 1. PROBLEM DEFINITION & CONTEXT
|
31
|
+
|
32
|
+
[[LLM: The foundation of any product is a clear problem statement. As you review this section:
|
33
|
+
|
34
|
+
1. Verify the problem is real and worth solving
|
35
|
+
2. Check that the target audience is specific, not "everyone"
|
36
|
+
3. Ensure success metrics are measurable, not vague aspirations
|
37
|
+
4. Look for evidence of user research, not just assumptions
|
38
|
+
5. Confirm the problem-solution fit is logical]]
|
39
|
+
|
40
|
+
### 1.1 Problem Statement
|
41
|
+
|
42
|
+
- [ ] Clear articulation of the problem being solved
|
43
|
+
- [ ] Identification of who experiences the problem
|
44
|
+
- [ ] Explanation of why solving this problem matters
|
45
|
+
- [ ] Quantification of problem impact (if possible)
|
46
|
+
- [ ] Differentiation from existing solutions
|
47
|
+
|
48
|
+
### 1.2 Business Goals & Success Metrics
|
49
|
+
|
50
|
+
- [ ] Specific, measurable business objectives defined
|
51
|
+
- [ ] Clear success metrics and KPIs established
|
52
|
+
- [ ] Metrics are tied to user and business value
|
53
|
+
- [ ] Baseline measurements identified (if applicable)
|
54
|
+
- [ ] Timeframe for achieving goals specified
|
55
|
+
|
56
|
+
### 1.3 User Research & Insights
|
57
|
+
|
58
|
+
- [ ] Target user personas clearly defined
|
59
|
+
- [ ] User needs and pain points documented
|
60
|
+
- [ ] User research findings summarized (if available)
|
61
|
+
- [ ] Competitive analysis included
|
62
|
+
- [ ] Market context provided
|
63
|
+
|
64
|
+
## 2. MVP SCOPE DEFINITION
|
65
|
+
|
66
|
+
[[LLM: MVP scope is critical - too much and you waste resources, too little and you can't validate. Check:
|
67
|
+
|
68
|
+
1. Is this truly minimal? Challenge every feature
|
69
|
+
2. Does each feature directly address the core problem?
|
70
|
+
3. Are "nice-to-haves" clearly separated from "must-haves"?
|
71
|
+
4. Is the rationale for inclusion/exclusion documented?
|
72
|
+
5. Can you ship this in the target timeframe?]]
|
73
|
+
|
74
|
+
### 2.1 Core Functionality
|
75
|
+
|
76
|
+
- [ ] Essential features clearly distinguished from nice-to-haves
|
77
|
+
- [ ] Features directly address defined problem statement
|
78
|
+
- [ ] Each Epic ties back to specific user needs
|
79
|
+
- [ ] Features and Stories are described from user perspective
|
80
|
+
- [ ] Minimum requirements for success defined
|
81
|
+
|
82
|
+
### 2.2 Scope Boundaries
|
83
|
+
|
84
|
+
- [ ] Clear articulation of what is OUT of scope
|
85
|
+
- [ ] Future enhancements section included
|
86
|
+
- [ ] Rationale for scope decisions documented
|
87
|
+
- [ ] MVP minimizes functionality while maximizing learning
|
88
|
+
- [ ] Scope has been reviewed and refined multiple times
|
89
|
+
|
90
|
+
### 2.3 MVP Validation Approach
|
91
|
+
|
92
|
+
- [ ] Method for testing MVP success defined
|
93
|
+
- [ ] Initial user feedback mechanisms planned
|
94
|
+
- [ ] Criteria for moving beyond MVP specified
|
95
|
+
- [ ] Learning goals for MVP articulated
|
96
|
+
- [ ] Timeline expectations set
|
97
|
+
|
98
|
+
## 3. USER EXPERIENCE REQUIREMENTS
|
99
|
+
|
100
|
+
[[LLM: UX requirements bridge user needs and technical implementation. Validate:
|
101
|
+
|
102
|
+
1. User flows cover the primary use cases completely
|
103
|
+
2. Edge cases are identified (even if deferred)
|
104
|
+
3. Accessibility isn't an afterthought
|
105
|
+
4. Performance expectations are realistic
|
106
|
+
5. Error states and recovery are planned]]
|
107
|
+
|
108
|
+
### 3.1 User Journeys & Flows
|
109
|
+
|
110
|
+
- [ ] Primary user flows documented
|
111
|
+
- [ ] Entry and exit points for each flow identified
|
112
|
+
- [ ] Decision points and branches mapped
|
113
|
+
- [ ] Critical path highlighted
|
114
|
+
- [ ] Edge cases considered
|
115
|
+
|
116
|
+
### 3.2 Usability Requirements
|
117
|
+
|
118
|
+
- [ ] Accessibility considerations documented
|
119
|
+
- [ ] Platform/device compatibility specified
|
120
|
+
- [ ] Performance expectations from user perspective defined
|
121
|
+
- [ ] Error handling and recovery approaches outlined
|
122
|
+
- [ ] User feedback mechanisms identified
|
123
|
+
|
124
|
+
### 3.3 UI Requirements
|
125
|
+
|
126
|
+
- [ ] Information architecture outlined
|
127
|
+
- [ ] Critical UI components identified
|
128
|
+
- [ ] Visual design guidelines referenced (if applicable)
|
129
|
+
- [ ] Content requirements specified
|
130
|
+
- [ ] High-level navigation structure defined
|
131
|
+
|
132
|
+
## 4. FUNCTIONAL REQUIREMENTS
|
133
|
+
|
134
|
+
[[LLM: Functional requirements must be clear enough for implementation. Check:
|
135
|
+
|
136
|
+
1. Requirements focus on WHAT not HOW (no implementation details)
|
137
|
+
2. Each requirement is testable (how would QA verify it?)
|
138
|
+
3. Dependencies are explicit (what needs to be built first?)
|
139
|
+
4. Requirements use consistent terminology
|
140
|
+
5. Complex features are broken into manageable pieces]]
|
141
|
+
|
142
|
+
### 4.1 Feature Completeness
|
143
|
+
|
144
|
+
- [ ] All required features for MVP documented
|
145
|
+
- [ ] Features have clear, user-focused descriptions
|
146
|
+
- [ ] Feature priority/criticality indicated
|
147
|
+
- [ ] Requirements are testable and verifiable
|
148
|
+
- [ ] Dependencies between features identified
|
149
|
+
|
150
|
+
### 4.2 Requirements Quality
|
151
|
+
|
152
|
+
- [ ] Requirements are specific and unambiguous
|
153
|
+
- [ ] Requirements focus on WHAT not HOW
|
154
|
+
- [ ] Requirements use consistent terminology
|
155
|
+
- [ ] Complex requirements broken into simpler parts
|
156
|
+
- [ ] Technical jargon minimized or explained
|
157
|
+
|
158
|
+
### 4.3 User Stories & Acceptance Criteria
|
159
|
+
|
160
|
+
- [ ] Stories follow consistent format
|
161
|
+
- [ ] Acceptance criteria are testable
|
162
|
+
- [ ] Stories are sized appropriately (not too large)
|
163
|
+
- [ ] Stories are independent where possible
|
164
|
+
- [ ] Stories include necessary context
|
165
|
+
- [ ] Local testability requirements (e.g., via CLI) defined in ACs for relevant backend/data stories
|
166
|
+
|
167
|
+
## 5. NON-FUNCTIONAL REQUIREMENTS
|
168
|
+
|
169
|
+
### 5.1 Performance Requirements
|
170
|
+
|
171
|
+
- [ ] Response time expectations defined
|
172
|
+
- [ ] Throughput/capacity requirements specified
|
173
|
+
- [ ] Scalability needs documented
|
174
|
+
- [ ] Resource utilization constraints identified
|
175
|
+
- [ ] Load handling expectations set
|
176
|
+
|
177
|
+
### 5.2 Security & Compliance
|
178
|
+
|
179
|
+
- [ ] Data protection requirements specified
|
180
|
+
- [ ] Authentication/authorization needs defined
|
181
|
+
- [ ] Compliance requirements documented
|
182
|
+
- [ ] Security testing requirements outlined
|
183
|
+
- [ ] Privacy considerations addressed
|
184
|
+
|
185
|
+
### 5.3 Reliability & Resilience
|
186
|
+
|
187
|
+
- [ ] Availability requirements defined
|
188
|
+
- [ ] Backup and recovery needs documented
|
189
|
+
- [ ] Fault tolerance expectations set
|
190
|
+
- [ ] Error handling requirements specified
|
191
|
+
- [ ] Maintenance and support considerations included
|
192
|
+
|
193
|
+
### 5.4 Technical Constraints
|
194
|
+
|
195
|
+
- [ ] Platform/technology constraints documented
|
196
|
+
- [ ] Integration requirements outlined
|
197
|
+
- [ ] Third-party service dependencies identified
|
198
|
+
- [ ] Infrastructure requirements specified
|
199
|
+
- [ ] Development environment needs identified
|
200
|
+
|
201
|
+
## 6. EPIC & STORY STRUCTURE
|
202
|
+
|
203
|
+
### 6.1 Epic Definition
|
204
|
+
|
205
|
+
- [ ] Epics represent cohesive units of functionality
|
206
|
+
- [ ] Epics focus on user/business value delivery
|
207
|
+
- [ ] Epic goals clearly articulated
|
208
|
+
- [ ] Epics are sized appropriately for incremental delivery
|
209
|
+
- [ ] Epic sequence and dependencies identified
|
210
|
+
|
211
|
+
### 6.2 Story Breakdown
|
212
|
+
|
213
|
+
- [ ] Stories are broken down to appropriate size
|
214
|
+
- [ ] Stories have clear, independent value
|
215
|
+
- [ ] Stories include appropriate acceptance criteria
|
216
|
+
- [ ] Story dependencies and sequence documented
|
217
|
+
- [ ] Stories aligned with epic goals
|
218
|
+
|
219
|
+
### 6.3 First Epic Completeness
|
220
|
+
|
221
|
+
- [ ] First epic includes all necessary setup steps
|
222
|
+
- [ ] Project scaffolding and initialization addressed
|
223
|
+
- [ ] Core infrastructure setup included
|
224
|
+
- [ ] Development environment setup addressed
|
225
|
+
- [ ] Local testability established early
|
226
|
+
|
227
|
+
## 7. TECHNICAL GUIDANCE
|
228
|
+
|
229
|
+
### 7.1 Architecture Guidance
|
230
|
+
|
231
|
+
- [ ] Initial architecture direction provided
|
232
|
+
- [ ] Technical constraints clearly communicated
|
233
|
+
- [ ] Integration points identified
|
234
|
+
- [ ] Performance considerations highlighted
|
235
|
+
- [ ] Security requirements articulated
|
236
|
+
- [ ] Known areas of high complexity or technical risk flagged for architectural deep-dive
|
237
|
+
|
238
|
+
### 7.2 Technical Decision Framework
|
239
|
+
|
240
|
+
- [ ] Decision criteria for technical choices provided
|
241
|
+
- [ ] Trade-offs articulated for key decisions
|
242
|
+
- [ ] Rationale for selecting primary approach over considered alternatives documented (for key design/feature choices)
|
243
|
+
- [ ] Non-negotiable technical requirements highlighted
|
244
|
+
- [ ] Areas requiring technical investigation identified
|
245
|
+
- [ ] Guidance on technical debt approach provided
|
246
|
+
|
247
|
+
### 7.3 Implementation Considerations
|
248
|
+
|
249
|
+
- [ ] Development approach guidance provided
|
250
|
+
- [ ] Testing requirements articulated
|
251
|
+
- [ ] Deployment expectations set
|
252
|
+
- [ ] Monitoring needs identified
|
253
|
+
- [ ] Documentation requirements specified
|
254
|
+
|
255
|
+
## 8. CROSS-FUNCTIONAL REQUIREMENTS
|
256
|
+
|
257
|
+
### 8.1 Data Requirements
|
258
|
+
|
259
|
+
- [ ] Data entities and relationships identified
|
260
|
+
- [ ] Data storage requirements specified
|
261
|
+
- [ ] Data quality requirements defined
|
262
|
+
- [ ] Data retention policies identified
|
263
|
+
- [ ] Data migration needs addressed (if applicable)
|
264
|
+
- [ ] Schema changes planned iteratively, tied to stories requiring them
|
265
|
+
|
266
|
+
### 8.2 Integration Requirements
|
267
|
+
|
268
|
+
- [ ] External system integrations identified
|
269
|
+
- [ ] API requirements documented
|
270
|
+
- [ ] Authentication for integrations specified
|
271
|
+
- [ ] Data exchange formats defined
|
272
|
+
- [ ] Integration testing requirements outlined
|
273
|
+
|
274
|
+
### 8.3 Operational Requirements
|
275
|
+
|
276
|
+
- [ ] Deployment frequency expectations set
|
277
|
+
- [ ] Environment requirements defined
|
278
|
+
- [ ] Monitoring and alerting needs identified
|
279
|
+
- [ ] Support requirements documented
|
280
|
+
- [ ] Performance monitoring approach specified
|
281
|
+
|
282
|
+
## 9. CLARITY & COMMUNICATION
|
283
|
+
|
284
|
+
### 9.1 Documentation Quality
|
285
|
+
|
286
|
+
- [ ] Documents use clear, consistent language
|
287
|
+
- [ ] Documents are well-structured and organized
|
288
|
+
- [ ] Technical terms are defined where necessary
|
289
|
+
- [ ] Diagrams/visuals included where helpful
|
290
|
+
- [ ] Documentation is versioned appropriately
|
291
|
+
|
292
|
+
### 9.2 Stakeholder Alignment
|
293
|
+
|
294
|
+
- [ ] Key stakeholders identified
|
295
|
+
- [ ] Stakeholder input incorporated
|
296
|
+
- [ ] Potential areas of disagreement addressed
|
297
|
+
- [ ] Communication plan for updates established
|
298
|
+
- [ ] Approval process defined
|
299
|
+
|
300
|
+
## PRD & EPIC VALIDATION SUMMARY
|
301
|
+
|
302
|
+
[[LLM: FINAL PM CHECKLIST REPORT GENERATION
|
303
|
+
|
304
|
+
Create a comprehensive validation report that includes:
|
305
|
+
|
306
|
+
1. Executive Summary
|
307
|
+
|
308
|
+
- Overall PRD completeness (percentage)
|
309
|
+
- MVP scope appropriateness (Too Large/Just Right/Too Small)
|
310
|
+
- Readiness for architecture phase (Ready/Nearly Ready/Not Ready)
|
311
|
+
- Most critical gaps or concerns
|
312
|
+
|
313
|
+
2. Category Analysis Table
|
314
|
+
Fill in the actual table with:
|
315
|
+
|
316
|
+
- Status: PASS (90%+ complete), PARTIAL (60-89%), FAIL (<60%)
|
317
|
+
- Critical Issues: Specific problems that block progress
|
318
|
+
|
319
|
+
3. Top Issues by Priority
|
320
|
+
|
321
|
+
- BLOCKERS: Must fix before architect can proceed
|
322
|
+
- HIGH: Should fix for quality
|
323
|
+
- MEDIUM: Would improve clarity
|
324
|
+
- LOW: Nice to have
|
325
|
+
|
326
|
+
4. MVP Scope Assessment
|
327
|
+
|
328
|
+
- Features that might be cut for true MVP
|
329
|
+
- Missing features that are essential
|
330
|
+
- Complexity concerns
|
331
|
+
- Timeline realism
|
332
|
+
|
333
|
+
5. Technical Readiness
|
334
|
+
|
335
|
+
- Clarity of technical constraints
|
336
|
+
- Identified technical risks
|
337
|
+
- Areas needing architect investigation
|
338
|
+
|
339
|
+
6. Recommendations
|
340
|
+
- Specific actions to address each blocker
|
341
|
+
- Suggested improvements
|
342
|
+
- Next steps
|
343
|
+
|
344
|
+
After presenting the report, ask if the user wants:
|
345
|
+
|
346
|
+
- Detailed analysis of any failed sections
|
347
|
+
- Suggestions for improving specific areas
|
348
|
+
- Help with refining MVP scope]]
|
349
|
+
|
350
|
+
### Category Statuses
|
351
|
+
|
352
|
+
| Category | Status | Critical Issues |
|
353
|
+
| -------------------------------- | ------ | --------------- |
|
354
|
+
| 1. Problem Definition & Context | _TBD_ | |
|
355
|
+
| 2. MVP Scope Definition | _TBD_ | |
|
356
|
+
| 3. User Experience Requirements | _TBD_ | |
|
357
|
+
| 4. Functional Requirements | _TBD_ | |
|
358
|
+
| 5. Non-Functional Requirements | _TBD_ | |
|
359
|
+
| 6. Epic & Story Structure | _TBD_ | |
|
360
|
+
| 7. Technical Guidance | _TBD_ | |
|
361
|
+
| 8. Cross-Functional Requirements | _TBD_ | |
|
362
|
+
| 9. Clarity & Communication | _TBD_ | |
|
363
|
+
|
364
|
+
### Critical Deficiencies
|
365
|
+
|
366
|
+
(To be populated during validation)
|
367
|
+
|
368
|
+
### Recommendations
|
369
|
+
|
370
|
+
(To be populated during validation)
|
371
|
+
|
372
|
+
### Final Decision
|
373
|
+
|
374
|
+
- **READY FOR ARCHITECT**: The PRD and epics are comprehensive, properly structured, and ready for architectural design.
|
375
|
+
- **NEEDS REFINEMENT**: The requirements documentation requires additional work to address the identified deficiencies.
|