jumpstart-mode 1.0.5 → 1.0.7
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/.github/agents/jumpstart-analyst.agent.md +14 -6
- package/.github/agents/jumpstart-architect.agent.md +15 -7
- package/.github/agents/jumpstart-challenger.agent.md +22 -5
- package/.github/agents/jumpstart-developer.agent.md +12 -2
- package/.github/agents/jumpstart-pm.agent.md +15 -7
- package/.github/copilot-instructions.md +2 -0
- package/.jumpstart/agents/analyst.md +16 -4
- package/.jumpstart/agents/architect.md +21 -7
- package/.jumpstart/agents/challenger.md +40 -6
- package/.jumpstart/agents/developer.md +12 -2
- package/.jumpstart/agents/pm.md +66 -7
- package/.jumpstart/commands/commands.md +27 -22
- package/.jumpstart/config.yaml +8 -5
- package/.jumpstart/templates/architecture.md +6 -6
- package/.jumpstart/templates/challenger-brief.md +19 -12
- package/.jumpstart/templates/implementation-plan.md +3 -3
- package/.jumpstart/templates/insights.md +18 -18
- package/.jumpstart/templates/prd.md +160 -3
- package/.jumpstart/templates/product-brief.md +2 -2
- package/AGENTS.md +87 -19
- package/README.md +44 -18
- package/package.json +1 -1
|
@@ -26,15 +26,17 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
26
26
|
|
|
27
27
|
**Pre-conditions:** None. This is the entry point of the workflow.
|
|
28
28
|
|
|
29
|
-
**
|
|
29
|
+
**Behavior:**
|
|
30
30
|
1. Load the Challenger agent persona from `.jumpstart/agents/challenger.md`.
|
|
31
|
-
2. If
|
|
32
|
-
3. If
|
|
33
|
-
4.
|
|
34
|
-
5.
|
|
35
|
-
6.
|
|
36
|
-
7.
|
|
37
|
-
8.
|
|
31
|
+
2. If `project.approver` is empty in config, ask the human for their name and save it.
|
|
32
|
+
3. If the human provided an initial statement, use it as Step 1 input.
|
|
33
|
+
4. If no statement was provided, prompt the human to describe their idea or problem.
|
|
34
|
+
5. Follow the Challenger's Elicitation Protocol (Steps 1-8).
|
|
35
|
+
6. Populate `specs/challenger-brief.md` using the template.
|
|
36
|
+
7. Create and maintain `specs/insights/challenger-brief-insights.md` documenting key reasoning and alternatives considered.
|
|
37
|
+
8. Present the brief for human approval.
|
|
38
|
+
9. On approval, fill in Phase Gate (checkboxes, approver name, date), update `config.yaml` to set `current_phase: 0`.
|
|
39
|
+
10. Automatically hand off to Phase 1.
|
|
38
40
|
|
|
39
41
|
---
|
|
40
42
|
|
|
@@ -61,7 +63,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
61
63
|
- `specs/challenger-brief.md` must exist and be approved.
|
|
62
64
|
- If the pre-condition is not met, display: "Phase 0 must be completed first. Run `/jumpstart.challenge` to begin."
|
|
63
65
|
|
|
64
|
-
**
|
|
66
|
+
**Behavior:**
|
|
65
67
|
1. Verify pre-conditions.
|
|
66
68
|
2. Load the Analyst agent persona from `.jumpstart/agents/analyst.md`.
|
|
67
69
|
3. Read `specs/challenger-brief.md` and `.jumpstart/config.yaml`.
|
|
@@ -69,7 +71,8 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
69
71
|
5. Populate `specs/product-brief.md` using the template.
|
|
70
72
|
6. Create and maintain `specs/insights/product-brief-insights.md` documenting key reasoning and alternatives considered.
|
|
71
73
|
7. Present the brief for human approval.
|
|
72
|
-
8. On approval, update `config.yaml` to set `current_phase: 1
|
|
74
|
+
8. On approval, fill in Phase Gate (checkboxes, approver name, date), update `config.yaml` to set `current_phase: 1`.
|
|
75
|
+
9. Automatically hand off to Phase 2.
|
|
73
76
|
|
|
74
77
|
---
|
|
75
78
|
|
|
@@ -84,7 +87,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
84
87
|
**Description:** Generate the Product Requirements Document from the approved Product Brief. The PM agent defines epics, writes user stories with acceptance criteria, specifies non-functional requirements, and structures implementation milestones.
|
|
85
88
|
|
|
86
89
|
**VS Code Chat Features:**
|
|
87
|
-
- If `vscode_tools.use_todo_lists` is enabled, track progress through the
|
|
90
|
+
- If `vscode_tools.use_todo_lists` is enabled, track progress through the 10-step Planning Protocol
|
|
88
91
|
- Particularly useful when decomposing many epics into stories—shows which epics are complete
|
|
89
92
|
- If `use_ask_questions` is enabled, use for epic validation and prioritization discussions
|
|
90
93
|
|
|
@@ -98,15 +101,16 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
98
101
|
- `specs/product-brief.md` must exist and be approved.
|
|
99
102
|
- If pre-conditions are not met, display which phases are incomplete.
|
|
100
103
|
|
|
101
|
-
**
|
|
104
|
+
**Behavior:**
|
|
102
105
|
1. Verify pre-conditions.
|
|
103
106
|
2. Load the PM agent persona from `.jumpstart/agents/pm.md`.
|
|
104
107
|
3. Read `specs/challenger-brief.md`, `specs/product-brief.md`, and `.jumpstart/config.yaml`.
|
|
105
|
-
4. Follow the PM's Planning Protocol (Steps 1-
|
|
108
|
+
4. Follow the PM's Planning Protocol (Steps 1-10).
|
|
106
109
|
5. Populate `specs/prd.md` using the template.
|
|
107
110
|
6. Create and maintain `specs/insights/prd-insights.md` documenting key reasoning and alternatives considered.
|
|
108
111
|
7. Present the PRD for human approval.
|
|
109
|
-
8. On approval, update `config.yaml` to set `current_phase: 2
|
|
112
|
+
8. On approval, fill in Phase Gate (checkboxes, approver name, date), update `config.yaml` to set `current_phase: 2`.
|
|
113
|
+
9. Automatically hand off to Phase 3.
|
|
110
114
|
|
|
111
115
|
---
|
|
112
116
|
|
|
@@ -141,7 +145,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
141
145
|
- `specs/prd.md` must exist and be approved.
|
|
142
146
|
- If pre-conditions are not met, display which phases are incomplete.
|
|
143
147
|
|
|
144
|
-
**
|
|
148
|
+
**Behavior:**
|
|
145
149
|
1. Verify pre-conditions.
|
|
146
150
|
2. Load the Architect agent persona from `.jumpstart/agents/architect.md`.
|
|
147
151
|
3. Read all preceding spec files and `.jumpstart/config.yaml`.
|
|
@@ -150,7 +154,8 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
150
154
|
6. Create ADR files in `specs/decisions/` using the ADR template.
|
|
151
155
|
7. Create and maintain `specs/insights/architecture-insights.md` documenting key reasoning and alternatives considered.
|
|
152
156
|
8. Present both documents for human approval.
|
|
153
|
-
9. On approval, update `config.yaml` to set `current_phase: 3
|
|
157
|
+
9. On approval, fill in Phase Gate (checkboxes, approver name, date), update `config.yaml` to set `current_phase: 3`.
|
|
158
|
+
10. Automatically hand off to Phase 4.
|
|
154
159
|
|
|
155
160
|
---
|
|
156
161
|
|
|
@@ -182,7 +187,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
182
187
|
- `specs/implementation-plan.md`
|
|
183
188
|
- If pre-conditions are not met, display which phases are incomplete.
|
|
184
189
|
|
|
185
|
-
**
|
|
190
|
+
**Behavior:**
|
|
186
191
|
1. Verify pre-conditions.
|
|
187
192
|
2. Load the Developer agent persona from `.jumpstart/agents/developer.md`.
|
|
188
193
|
3. Read all spec files and `.jumpstart/config.yaml`.
|
|
@@ -190,7 +195,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
190
195
|
5. Update `specs/implementation-plan.md` with task completion status as work progresses.
|
|
191
196
|
6. Create and maintain `specs/insights/implementation-plan-insights.md` documenting implementation decisions and problem-solving approaches.
|
|
192
197
|
7. On completion of all milestones, present the final summary to the human.
|
|
193
|
-
8.
|
|
198
|
+
8. On approval, fill in Phase Gate (checkboxes, approver name, date), update `config.yaml` to set `current_phase: 4`.
|
|
194
199
|
|
|
195
200
|
---
|
|
196
201
|
|
|
@@ -206,7 +211,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
206
211
|
/jumpstart.status
|
|
207
212
|
```
|
|
208
213
|
|
|
209
|
-
**
|
|
214
|
+
**Behavior:**
|
|
210
215
|
1. Read `.jumpstart/config.yaml` for `current_phase`.
|
|
211
216
|
2. Check which spec files exist and their approval status.
|
|
212
217
|
3. If Phase 4 is in progress, read `specs/implementation-plan.md` for task completion counts.
|
|
@@ -251,7 +256,7 @@ Next action: Run [/jumpstart.command] to continue.
|
|
|
251
256
|
/jumpstart.review
|
|
252
257
|
```
|
|
253
258
|
|
|
254
|
-
**
|
|
259
|
+
**Behavior:**
|
|
255
260
|
1. Determine the current phase from `config.yaml`.
|
|
256
261
|
2. Read the relevant artifact(s) for that phase.
|
|
257
262
|
3. Compare against the template to identify:
|
|
@@ -278,7 +283,7 @@ Next action: Run [/jumpstart.command] to continue.
|
|
|
278
283
|
/jumpstart.insights developer
|
|
279
284
|
```
|
|
280
285
|
|
|
281
|
-
**
|
|
286
|
+
**Behavior:**
|
|
282
287
|
1. Read files from `specs/insights/` directory.
|
|
283
288
|
2. If a phase filter is provided (challenger, analyst, pm, architect, developer), show only insights for that phase.
|
|
284
289
|
3. Otherwise, show all insights files in chronological order with phase categories.
|
|
@@ -306,5 +311,5 @@ Next action: Run [/jumpstart.command] to continue.
|
|
|
306
311
|
/jumpstart.help
|
|
307
312
|
```
|
|
308
313
|
|
|
309
|
-
**
|
|
314
|
+
**Behavior:**
|
|
310
315
|
Display the command reference with current availability based on workflow state. Commands whose pre-conditions are not met should be shown as unavailable with a note on what must be completed first.
|
package/.jumpstart/config.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# ============================================================================
|
|
2
2
|
# Jump Start Framework Configuration
|
|
3
3
|
# ============================================================================
|
|
4
|
-
# This file controls the
|
|
4
|
+
# This file controls the behavior of the Jump Start agentic coding workflow.
|
|
5
5
|
# Edit values below to customise the framework for your project.
|
|
6
6
|
# ============================================================================
|
|
7
7
|
|
|
@@ -9,6 +9,7 @@ project:
|
|
|
9
9
|
name: "" # Your project name (populated by `jumpstart init`)
|
|
10
10
|
description: "" # One-line project description
|
|
11
11
|
created_at: "" # ISO date, auto-populated
|
|
12
|
+
approver: "" # Name of the human approver (captured during first phase gate)
|
|
12
13
|
|
|
13
14
|
# ---------------------------------------------------------------------------
|
|
14
15
|
# Workflow Settings
|
|
@@ -17,6 +18,8 @@ workflow:
|
|
|
17
18
|
require_gate_approval: true # Require explicit human approval between phases
|
|
18
19
|
auto_commit_artifacts: false # Auto-commit spec files to git after generation
|
|
19
20
|
allow_phase_skip: false # If true, allows jumping to a later phase
|
|
21
|
+
auto_handoff: true # Automatically proceed to next phase after approval
|
|
22
|
+
archive_on_restart: true # Archive existing artifacts before regenerating (rename with date suffix)
|
|
20
23
|
current_phase: null # Tracks active phase (0-4), managed by framework
|
|
21
24
|
|
|
22
25
|
# ---------------------------------------------------------------------------
|
|
@@ -28,9 +31,9 @@ agents:
|
|
|
28
31
|
persona_file: "agents/challenger.md"
|
|
29
32
|
capture_insights: true # Capture decision rationale and alternatives considered
|
|
30
33
|
elicitation_depth: standard # quick | standard | deep
|
|
31
|
-
# quick: 3 assumption checks, 3
|
|
32
|
-
# standard: 5-7 assumption checks, 5
|
|
33
|
-
# deep: 10+ assumption checks,
|
|
34
|
+
# quick: 3 assumption checks, linear root cause analysis (approx 3 layers), minimal stakeholder mapping
|
|
35
|
+
# standard: 5-7 assumption checks, recursive root cause analysis (drill until root found, usually ~5 layers), full stakeholder map
|
|
36
|
+
# deep: 10+ assumption checks, multi-branch root cause analysis (Ishikawa/Fishbone style), stakeholder
|
|
34
37
|
# interviews simulation, competitive problem framing
|
|
35
38
|
max_assumptions: 10 # Cap on surfaced assumptions
|
|
36
39
|
require_reframe: true # Force at least one problem reframe
|
|
@@ -88,7 +91,7 @@ agents:
|
|
|
88
91
|
# Integration Settings
|
|
89
92
|
# ---------------------------------------------------------------------------
|
|
90
93
|
integrations:
|
|
91
|
-
ai_assistant: "copilot" # copilot | claude-code | cursor | gemini | windsurf
|
|
94
|
+
ai_assistant: "copilot" # copilot | claude-code | cursor | gemini | windsurf | codex
|
|
92
95
|
git_branch_per_phase: false # Create a branch for each phase
|
|
93
96
|
branch_naming: "jumpstart/phase-{n}-{name}" # Branch name template
|
|
94
97
|
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
> **Created:** [DATE]
|
|
7
7
|
> **Approved:** [DATE or pending]
|
|
8
8
|
> **Upstream References:**
|
|
9
|
-
> - [specs/challenger-brief.md](
|
|
10
|
-
> - [specs/product-brief.md](
|
|
11
|
-
> - [specs/prd.md](
|
|
9
|
+
> - [specs/challenger-brief.md](challenger-brief.md)
|
|
10
|
+
> - [specs/product-brief.md](product-brief.md)
|
|
11
|
+
> - [specs/prd.md](prd.md)
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -245,8 +245,8 @@ Push to branch
|
|
|
245
245
|
|
|
246
246
|
| ADR | Title | Status | File |
|
|
247
247
|
|-----|-------|--------|------|
|
|
248
|
-
| ADR-001 | [Decision title] | Accepted | [specs/decisions/001-short-title.md](
|
|
249
|
-
| ADR-002 | [Decision title] | Accepted | [specs/decisions/002-short-title.md](
|
|
248
|
+
| ADR-001 | [Decision title] | Accepted | [specs/decisions/001-short-title.md](decisions/001-short-title.md) |
|
|
249
|
+
| ADR-002 | [Decision title] | Accepted | [specs/decisions/002-short-title.md](decisions/002-short-title.md) |
|
|
250
250
|
|
|
251
251
|
[List all ADRs. Full content lives in individual files in specs/decisions/.]
|
|
252
252
|
|
|
@@ -272,7 +272,7 @@ Push to branch
|
|
|
272
272
|
|
|
273
273
|
## Insights Reference
|
|
274
274
|
|
|
275
|
-
**Companion Document:** [specs/insights/architecture-insights.md](
|
|
275
|
+
**Companion Document:** [specs/insights/architecture-insights.md](insights/architecture-insights.md)
|
|
276
276
|
|
|
277
277
|
This artifact was informed by ongoing insights captured during Solutioning. Key insights that shaped this document:
|
|
278
278
|
|
|
@@ -36,18 +36,25 @@
|
|
|
36
36
|
|
|
37
37
|
**Starting point:** [The core problem extracted from the original statement]
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|-------|----------|--------|
|
|
41
|
-
| Why 1 | Why does this problem exist? | [Human's answer] |
|
|
42
|
-
| Why 2 | Why does [answer to Why 1] happen? | [Human's answer] |
|
|
43
|
-
| Why 3 | Why does [answer to Why 2] happen? | [Human's answer] |
|
|
44
|
-
| Why 4 | Why does [answer to Why 3] happen? | [Human's answer] |
|
|
45
|
-
| Why 5 | Why does [answer to Why 4] happen? | [Human's answer] |
|
|
39
|
+
> **Method:** Ask "Why?" until the root cause is revealed. This may take fewer or more than 5 iterations. Ensure the logic holds by checking backwards: "Root Cause > therefore > ... > Problem."
|
|
46
40
|
|
|
47
|
-
**
|
|
41
|
+
**Analysis Chain:**
|
|
48
42
|
|
|
49
|
-
**
|
|
50
|
-
|
|
43
|
+
1. **Why?** [Answer 1]
|
|
44
|
+
2. **Why?** [Answer 2]
|
|
45
|
+
3. **Why?** [Answer 3]
|
|
46
|
+
4. **Why?** [Answer 4]
|
|
47
|
+
5. **Why?** [Answer 5 - add or remove steps as needed to reach root cause]
|
|
48
|
+
|
|
49
|
+
**Logic Check (Working Backwards):**
|
|
50
|
+
> [Root Cause] **therefore** [Answer N-1] ... **therefore** [Original Problem].
|
|
51
|
+
> *Does this chain of causality make logical sense without logical leaps?*
|
|
52
|
+
|
|
53
|
+
**Root Cause Identified:**
|
|
54
|
+
> [Summary of the deepest cause reached]
|
|
55
|
+
|
|
56
|
+
**Alternative branches (if any):**
|
|
57
|
+
- [Branch point] -> [Alternative root cause]
|
|
51
58
|
|
|
52
59
|
---
|
|
53
60
|
|
|
@@ -85,7 +92,7 @@ How will we know the problem has been solved?
|
|
|
85
92
|
|
|
86
93
|
| # | Criterion | Type | Measurable? |
|
|
87
94
|
|---|-----------|------|------------|
|
|
88
|
-
| 1 | [Outcome-based success criterion, solution-agnostic] |
|
|
95
|
+
| 1 | [Outcome-based success criterion, solution-agnostic] | Behavioral / Metric / Qualitative | Yes / Needs refinement |
|
|
89
96
|
| 2 | | | |
|
|
90
97
|
| 3 | | | |
|
|
91
98
|
|
|
@@ -111,7 +118,7 @@ How will we know the problem has been solved?
|
|
|
111
118
|
|
|
112
119
|
## Insights Reference
|
|
113
120
|
|
|
114
|
-
**Companion Document:** [specs/insights/challenger-brief-insights.md](
|
|
121
|
+
**Companion Document:** [specs/insights/challenger-brief-insights.md](insights/challenger-brief-insights.md)
|
|
115
122
|
|
|
116
123
|
This artifact was informed by ongoing insights captured during Problem Discovery. Key insights that shaped this document:
|
|
117
124
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
> **Created:** [DATE]
|
|
7
7
|
> **Approved:** [DATE or pending]
|
|
8
8
|
> **Upstream References:**
|
|
9
|
-
> - [specs/prd.md](
|
|
10
|
-
> - [specs/architecture.md](
|
|
9
|
+
> - [specs/prd.md](prd.md)
|
|
10
|
+
> - [specs/architecture.md](architecture.md)
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -200,7 +200,7 @@ Document any deviations from the original plan during implementation.
|
|
|
200
200
|
|
|
201
201
|
## Insights Reference
|
|
202
202
|
|
|
203
|
-
**Companion Document:** [specs/insights/implementation-plan-insights.md](
|
|
203
|
+
**Companion Document:** [specs/insights/implementation-plan-insights.md](insights/implementation-plan-insights.md)
|
|
204
204
|
|
|
205
205
|
This artifact was informed by ongoing insights captured during Solutioning and Implementation. Key insights that shaped this document:
|
|
206
206
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **Phase:** [0-4] -- [Phase Name]
|
|
4
4
|
> **Agent:** [Agent Name]
|
|
5
|
-
> **Parent Artifact:** [`specs/[artifact-name].md`](
|
|
5
|
+
> **Parent Artifact:** [`specs/[artifact-name].md`](../[artifact-name].md)
|
|
6
6
|
> **Created:** [DATE]
|
|
7
7
|
> **Last Updated:** [DATE]
|
|
8
8
|
|
|
@@ -49,9 +49,9 @@ You can record different kinds of insights. Here are some common types, but don'
|
|
|
49
49
|
When an insight relates to a specific section of the parent artifact, link to it:
|
|
50
50
|
|
|
51
51
|
```markdown
|
|
52
|
-
→ See [Problem Statement](
|
|
53
|
-
→ Related to [User Persona 2](
|
|
54
|
-
→ Influences [Architecture Decision 003](
|
|
52
|
+
→ See [Problem Statement](../challenger-brief.md#reframed-problem-statement)
|
|
53
|
+
→ Related to [User Persona 2](../product-brief.md#user-personas)
|
|
54
|
+
→ Influences [Architecture Decision 003](../decisions/003-api-design.md)
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
### Timestamps
|
|
@@ -122,8 +122,8 @@ During assumption surfacing, the human initially framed the problem as "develope
|
|
|
122
122
|
This realization shifted the problem from "ongoing inefficiency" to "high-friction project initialization." The scope and solution implications are very different.
|
|
123
123
|
|
|
124
124
|
**Cross-references:**
|
|
125
|
-
- [Assumption #3](
|
|
126
|
-
- [Reframed Problem Statement](
|
|
125
|
+
- [Assumption #3](../challenger-brief.md#assumptions-identified) captured this shift
|
|
126
|
+
- [Reframed Problem Statement](../challenger-brief.md#reframed-problem-statement) now focuses on "project setup friction"
|
|
127
127
|
|
|
128
128
|
---
|
|
129
129
|
|
|
@@ -140,7 +140,7 @@ The human chose to follow the organizational path, which revealed that the root
|
|
|
140
140
|
I noted the tooling branch as "Alternative thread" in the brief—it might resurface during architecture phase.
|
|
141
141
|
|
|
142
142
|
**Cross-references:**
|
|
143
|
-
- [Root Cause Analysis](
|
|
143
|
+
- [Root Cause Analysis](../challenger-brief.md#root-cause-analysis-five-whys)
|
|
144
144
|
|
|
145
145
|
---
|
|
146
146
|
|
|
@@ -157,8 +157,8 @@ While synthesizing interview notes (simulated), I noticed a third distinct behav
|
|
|
157
157
|
This persona has inverse priorities: they *want* more friction at setup to ensure compliance. Including them changes the requirements—solution needs configuration/policy layer, not just speed.
|
|
158
158
|
|
|
159
159
|
**Cross-references:**
|
|
160
|
-
- Added as [Persona 3: Platform Engineer](
|
|
161
|
-
- Impacts [Feature Priority](
|
|
160
|
+
- Added as [Persona 3: Platform Engineer](../product-brief.md#user-personas)
|
|
161
|
+
- Impacts [Feature Priority](../product-brief.md#feature-prioritization)—audit/compliance features elevated
|
|
162
162
|
|
|
163
163
|
---
|
|
164
164
|
|
|
@@ -175,7 +175,7 @@ This could be a meaningful differentiation point—not just templates, but *opin
|
|
|
175
175
|
Noted as open question for PM phase to address with proposed value prop testing.
|
|
176
176
|
|
|
177
177
|
**Cross-references:**
|
|
178
|
-
- [Competitive Analysis](
|
|
178
|
+
- [Competitive Analysis](../product-brief.md#competitive-landscape)
|
|
179
179
|
|
|
180
180
|
---
|
|
181
181
|
|
|
@@ -197,8 +197,8 @@ Decision: defer all advanced customization to v2. MVP will be opinionated by def
|
|
|
197
197
|
Trade-off acknowledged: loses Platform Engineer as primary MVP audience. They become secondary (can still use, but won't get custom policy enforcement).
|
|
198
198
|
|
|
199
199
|
**Cross-references:**
|
|
200
|
-
- [MVP Scope](
|
|
201
|
-
- [Persona 3 deprioritized rationale](
|
|
200
|
+
- [MVP Scope](../prd.md#mvp-scope)
|
|
201
|
+
- [Persona 3 deprioritized rationale](../prd.md#out-of-scope)
|
|
202
202
|
|
|
203
203
|
---
|
|
204
204
|
|
|
@@ -215,7 +215,7 @@ Problem: "active" is vague. Active in what sense? Commits? Deploys? Team still e
|
|
|
215
215
|
Alternative: "Users report 50% reduction in setup time" (survey-based, direct). Suggested we use both: time saved (short-term) and project longevity (long-term quality signal).
|
|
216
216
|
|
|
217
217
|
**Cross-references:**
|
|
218
|
-
- [Success Metrics](
|
|
218
|
+
- [Success Metrics](../prd.md#success-metrics)—now includes both
|
|
219
219
|
|
|
220
220
|
---
|
|
221
221
|
|
|
@@ -243,8 +243,8 @@ Reasoning:
|
|
|
243
243
|
Trade-off: Hard to add community-contributed templates without code changes. Acceptable for MVP.
|
|
244
244
|
|
|
245
245
|
**Cross-references:**
|
|
246
|
-
- [Architecture Decision Record 004](
|
|
247
|
-
- [Component: Template Engine](
|
|
246
|
+
- [Architecture Decision Record 004](../decisions/004-template-storage.md)
|
|
247
|
+
- [Component: Template Engine](../architecture.md#component-template-engine)
|
|
248
248
|
|
|
249
249
|
---
|
|
250
250
|
|
|
@@ -266,8 +266,8 @@ Options:
|
|
|
266
266
|
Chose #1 + note to revisit in developer phase. Flagged as performance testing requirement in implementation plan.
|
|
267
267
|
|
|
268
268
|
**Cross-references:**
|
|
269
|
-
- [Performance Requirements](
|
|
270
|
-
- [Implementation Task: Optimize File I/O](
|
|
269
|
+
- [Performance Requirements](../architecture.md#non-functional-requirements)
|
|
270
|
+
- [Implementation Task: Optimize File I/O](../implementation-plan.md#phase-1-tasks)
|
|
271
271
|
|
|
272
272
|
---
|
|
273
273
|
|
|
@@ -310,7 +310,7 @@ Trade-off: if we expand CLI to 10+ commands later, we might regret this. For MVP
|
|
|
310
310
|
|
|
311
311
|
**Cross-references:**
|
|
312
312
|
- [Implementation: CLI module](src/cli.js)
|
|
313
|
-
- [Dependency Justification](
|
|
313
|
+
- [Dependency Justification](../architecture.md#external-dependencies)—updated to remove yargs
|
|
314
314
|
|
|
315
315
|
---
|
|
316
316
|
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
> **Created:** [DATE]
|
|
7
7
|
> **Approved:** [DATE or pending]
|
|
8
8
|
> **Upstream References:**
|
|
9
|
-
> - [specs/challenger-brief.md](
|
|
10
|
-
> - [specs/product-brief.md](
|
|
9
|
+
> - [specs/challenger-brief.md](challenger-brief.md)
|
|
10
|
+
> - [specs/product-brief.md](product-brief.md)
|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
@@ -180,6 +180,162 @@ _Alternative checklist format (if configured):_
|
|
|
180
180
|
|
|
181
181
|
---
|
|
182
182
|
|
|
183
|
+
## Task Breakdown
|
|
184
|
+
|
|
185
|
+
> **Purpose:** Decompose user stories into actionable development tasks for the Developer agent (Phase 4). This section bridges requirements and implementation.
|
|
186
|
+
|
|
187
|
+
**Format:** `[Task ID] [P?] [Story] Description`
|
|
188
|
+
- **[P]**: Can run in parallel (different files, no dependencies)
|
|
189
|
+
- **[Story]**: Which user story this task belongs to (e.g., E1-S1, E2-S3)
|
|
190
|
+
|
|
191
|
+
**Path Conventions:** Adjust paths based on project structure:
|
|
192
|
+
- Single project: `src/`, `tests/`
|
|
193
|
+
- Web app: `backend/src/`, `frontend/src/`
|
|
194
|
+
- Mobile: `api/src/`, `mobile/src/`
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
### Phase 1: Setup (Shared Infrastructure)
|
|
199
|
+
|
|
200
|
+
**Purpose:** Project initialization and basic structure
|
|
201
|
+
|
|
202
|
+
- [ ] T001 Create project structure per implementation plan
|
|
203
|
+
- [ ] T002 Initialize [language] project with [framework] dependencies
|
|
204
|
+
- [ ] T003 [P] Configure linting and formatting tools
|
|
205
|
+
- [ ] T004 [P] Setup environment configuration management
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
### Phase 2: Foundational (Blocking Prerequisites)
|
|
210
|
+
|
|
211
|
+
**Purpose:** Core infrastructure that MUST be complete before ANY user story implementation
|
|
212
|
+
|
|
213
|
+
**⚠️ CRITICAL:** No user story work can begin until this phase is complete
|
|
214
|
+
|
|
215
|
+
- [ ] T005 Setup database schema and migrations framework
|
|
216
|
+
- [ ] T006 [P] Implement authentication/authorization framework
|
|
217
|
+
- [ ] T007 [P] Setup API routing and middleware structure
|
|
218
|
+
- [ ] T008 Create base models/entities that all stories depend on
|
|
219
|
+
- [ ] T009 Configure error handling and logging infrastructure
|
|
220
|
+
|
|
221
|
+
**Checkpoint:** ☐ Foundation ready - user story implementation can now begin
|
|
222
|
+
|
|
223
|
+
---
|
|
224
|
+
|
|
225
|
+
### Phase 3: Story E1-S1 - [Story Title] (Priority: Must Have)
|
|
226
|
+
|
|
227
|
+
**Goal:** [Brief description of what this story delivers]
|
|
228
|
+
**Independent Test:** [How to verify this story works on its own]
|
|
229
|
+
|
|
230
|
+
#### Tests for E1-S1 (Include if tests requested)
|
|
231
|
+
|
|
232
|
+
> **NOTE:** Write tests FIRST, ensure they FAIL before implementation
|
|
233
|
+
|
|
234
|
+
- [ ] T010 [P] [E1-S1] Contract test for [endpoint] in `tests/contract/test_[name].[ext]`
|
|
235
|
+
- [ ] T011 [P] [E1-S1] Integration test for [user journey] in `tests/integration/test_[name].[ext]`
|
|
236
|
+
|
|
237
|
+
#### Implementation for E1-S1
|
|
238
|
+
|
|
239
|
+
- [ ] T012 [P] [E1-S1] Create [Entity] model in `src/models/[entity].[ext]`
|
|
240
|
+
- [ ] T013 [E1-S1] Implement [Service] in `src/services/[service].[ext]` (depends on T012)
|
|
241
|
+
- [ ] T014 [E1-S1] Implement [endpoint/feature] in `src/[location]/[file].[ext]`
|
|
242
|
+
- [ ] T015 [E1-S1] Add validation and error handling
|
|
243
|
+
- [ ] T016 [E1-S1] Add logging for story operations
|
|
244
|
+
|
|
245
|
+
**Checkpoint:** ☐ Story E1-S1 fully functional and independently testable
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
### Phase 4: Story E1-S2 - [Story Title] (Priority: Must Have)
|
|
250
|
+
|
|
251
|
+
**Goal:** [Brief description]
|
|
252
|
+
**Independent Test:** [How to verify this story works on its own]
|
|
253
|
+
|
|
254
|
+
#### Tests for E1-S2 (Include if tests requested)
|
|
255
|
+
|
|
256
|
+
- [ ] T017 [P] [E1-S2] Contract test for [endpoint] in `tests/contract/test_[name].[ext]`
|
|
257
|
+
- [ ] T018 [P] [E1-S2] Integration test in `tests/integration/test_[name].[ext]`
|
|
258
|
+
|
|
259
|
+
#### Implementation for E1-S2
|
|
260
|
+
|
|
261
|
+
- [ ] T019 [P] [E1-S2] Create [Entity] model in `src/models/[entity].[ext]`
|
|
262
|
+
- [ ] T020 [E1-S2] Implement [Service] in `src/services/[service].[ext]`
|
|
263
|
+
- [ ] T021 [E1-S2] Implement [endpoint/feature] in `src/[location]/[file].[ext]`
|
|
264
|
+
- [ ] T022 [E1-S2] Integrate with E1-S1 components (if needed)
|
|
265
|
+
|
|
266
|
+
**Checkpoint:** ☐ Stories E1-S1 AND E1-S2 both work independently
|
|
267
|
+
|
|
268
|
+
---
|
|
269
|
+
|
|
270
|
+
<!-- TEMPLATE NOTE: Repeat Phase blocks for each user story -->
|
|
271
|
+
<!-- Organize by priority: Must Have → Should Have → Could Have -->
|
|
272
|
+
<!-- Each story should be independently implementable and testable -->
|
|
273
|
+
|
|
274
|
+
---
|
|
275
|
+
|
|
276
|
+
### Phase N: Polish & Cross-Cutting Concerns
|
|
277
|
+
|
|
278
|
+
**Purpose:** Improvements that affect multiple user stories
|
|
279
|
+
|
|
280
|
+
- [ ] TXXX [P] Documentation updates in `docs/`
|
|
281
|
+
- [ ] TXXX Code cleanup and refactoring
|
|
282
|
+
- [ ] TXXX Performance optimization across all stories
|
|
283
|
+
- [ ] TXXX [P] Additional unit tests (if requested) in `tests/unit/`
|
|
284
|
+
- [ ] TXXX Security hardening
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
### Dependencies & Execution Order
|
|
289
|
+
|
|
290
|
+
#### Phase Dependencies
|
|
291
|
+
|
|
292
|
+
```
|
|
293
|
+
Setup (Phase 1)
|
|
294
|
+
↓
|
|
295
|
+
Foundational (Phase 2) ← BLOCKS all user stories
|
|
296
|
+
↓
|
|
297
|
+
User Stories (Phase 3+) → Can proceed in parallel or sequentially by priority
|
|
298
|
+
↓
|
|
299
|
+
Polish (Phase N)
|
|
300
|
+
```
|
|
301
|
+
|
|
302
|
+
#### Within Each User Story
|
|
303
|
+
|
|
304
|
+
1. Tests (if included) MUST be written and FAIL before implementation
|
|
305
|
+
2. Models before services
|
|
306
|
+
3. Services before endpoints
|
|
307
|
+
4. Core implementation before integration
|
|
308
|
+
5. Story complete before moving to next priority
|
|
309
|
+
|
|
310
|
+
#### Parallel Opportunities
|
|
311
|
+
|
|
312
|
+
- All Setup tasks marked [P] can run in parallel
|
|
313
|
+
- All Foundational tasks marked [P] can run in parallel
|
|
314
|
+
- Once Foundational completes, all user stories can start in parallel
|
|
315
|
+
- Models within a story marked [P] can run in parallel
|
|
316
|
+
- Tests within a story marked [P] can run in parallel
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
### Implementation Strategy
|
|
321
|
+
|
|
322
|
+
#### MVP First (Highest Priority Stories Only)
|
|
323
|
+
|
|
324
|
+
1. Complete Phase 1: Setup
|
|
325
|
+
2. Complete Phase 2: Foundational (CRITICAL - blocks all stories)
|
|
326
|
+
3. Complete highest priority user story (e.g., E1-S1)
|
|
327
|
+
4. **STOP and VALIDATE:** Test story independently
|
|
328
|
+
5. Deploy/demo if ready
|
|
329
|
+
|
|
330
|
+
#### Incremental Delivery
|
|
331
|
+
|
|
332
|
+
1. Setup + Foundational → Foundation ready
|
|
333
|
+
2. Add Story 1 → Test independently → Deploy/Demo (MVP!)
|
|
334
|
+
3. Add Story 2 → Test independently → Deploy/Demo
|
|
335
|
+
4. Each story adds value without breaking previous stories
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
183
339
|
## Glossary
|
|
184
340
|
|
|
185
341
|
| Term | Definition |
|
|
@@ -190,7 +346,7 @@ _Alternative checklist format (if configured):_
|
|
|
190
346
|
---
|
|
191
347
|
## Insights Reference
|
|
192
348
|
|
|
193
|
-
**Companion Document:** [specs/insights/prd-insights.md](
|
|
349
|
+
**Companion Document:** [specs/insights/prd-insights.md](insights/prd-insights.md)
|
|
194
350
|
|
|
195
351
|
This artifact was informed by ongoing insights captured during Planning. Key insights that shaped this document:
|
|
196
352
|
|
|
@@ -209,6 +365,7 @@ See the insights document for complete decision rationale, alternatives consider
|
|
|
209
365
|
- [ ] Acceptance criteria are specific and testable (no vague qualifiers)
|
|
210
366
|
- [ ] Non-functional requirements have measurable thresholds
|
|
211
367
|
- [ ] At least one implementation milestone is defined
|
|
368
|
+
- [ ] Task breakdown includes Setup, Foundational, and at least one user story phase
|
|
212
369
|
- [ ] Dependencies have identified mitigations
|
|
213
370
|
- [ ] Risks have identified mitigations
|
|
214
371
|
- [ ] Success metrics map to Phase 0 validation criteria
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
> **Status:** Draft | Approved
|
|
6
6
|
> **Created:** [DATE]
|
|
7
7
|
> **Approved:** [DATE or pending]
|
|
8
|
-
> **Upstream Reference:** [specs/challenger-brief.md](
|
|
8
|
+
> **Upstream Reference:** [specs/challenger-brief.md](challenger-brief.md)
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
@@ -176,7 +176,7 @@ Capabilities explicitly excluded from this effort. Documenting these is as impor
|
|
|
176
176
|
|
|
177
177
|
## Insights Reference
|
|
178
178
|
|
|
179
|
-
**Companion Document:** [specs/insights/product-brief-insights.md](
|
|
179
|
+
**Companion Document:** [specs/insights/product-brief-insights.md](insights/product-brief-insights.md)
|
|
180
180
|
|
|
181
181
|
This artifact was informed by ongoing insights captured during Analysis. Key insights that shaped this document:
|
|
182
182
|
|