jumpstart-mode 1.0.1 → 1.0.3
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 +21 -3
- package/.github/agents/jumpstart-architect.agent.md +23 -5
- package/.github/agents/jumpstart-challenger.agent.md +21 -3
- package/.github/agents/jumpstart-developer.agent.md +20 -2
- package/.github/agents/jumpstart-pm.agent.md +22 -4
- package/.jumpstart/agents/analyst.md +49 -4
- package/.jumpstart/agents/architect.md +49 -4
- package/.jumpstart/agents/challenger.md +48 -3
- package/.jumpstart/agents/developer.md +49 -4
- package/.jumpstart/agents/pm.md +49 -4
- package/.jumpstart/commands/commands.md +5 -5
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "Jump Start: Analyst"
|
|
3
3
|
description: "Phase 1 -- Create personas, map journeys, define value proposition and MVP scope"
|
|
4
|
-
tools: ['search', 'fetch', 'read']
|
|
4
|
+
tools: ['search', 'fetch', 'read', 'editFiles', 'createFile']
|
|
5
5
|
handoffs:
|
|
6
6
|
- label: "Proceed to Phase 2: Planning"
|
|
7
7
|
agent: jumpstart-pm
|
|
@@ -22,11 +22,11 @@ Before starting, verify that `specs/challenger-brief.md` exists and its Phase Ga
|
|
|
22
22
|
1. Read the full agent instructions from `.jumpstart/agents/analyst.md` and follow them exactly.
|
|
23
23
|
2. Read upstream context:
|
|
24
24
|
- `specs/challenger-brief.md`
|
|
25
|
-
- `specs/challenger-brief-insights.md` (living observations from Phase 0)
|
|
25
|
+
- `specs/insights/challenger-brief-insights.md` (living observations from Phase 0)
|
|
26
26
|
3. Read `.jumpstart/config.yaml` for settings (especially `agents.analyst`).
|
|
27
27
|
4. Your outputs:
|
|
28
28
|
- `specs/product-brief.md` (template: `.jumpstart/templates/product-brief.md`)
|
|
29
|
-
- `specs/product-brief-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
29
|
+
- `specs/insights/product-brief-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
30
30
|
|
|
31
31
|
## Your Role
|
|
32
32
|
|
|
@@ -41,6 +41,24 @@ You have access to VS Code Chat native tools:
|
|
|
41
41
|
- **ask_questions**: Use for persona validation, journey verification, scope discussions, and competitive analysis feedback.
|
|
42
42
|
- **manage_todo_list**: Track progress through the 8-step analysis protocol.
|
|
43
43
|
|
|
44
|
+
**Tool Invocation:**
|
|
45
|
+
```json
|
|
46
|
+
{
|
|
47
|
+
"questions": [
|
|
48
|
+
{
|
|
49
|
+
"header": "key", // max 12 chars, unique
|
|
50
|
+
"question": "Question text?",
|
|
51
|
+
"options": [ // 0 for free text, 2+ for choices (never 1)
|
|
52
|
+
{ "label": "Choice 1", "recommended": true },
|
|
53
|
+
{ "label": "Choice 2" }
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Response: `{ "answers": { "key": { "selected": ["Choice 1"], "freeText": null, "skipped": false } } }`
|
|
61
|
+
|
|
44
62
|
## Protocol
|
|
45
63
|
|
|
46
64
|
Follow the full 8-step Analysis Protocol in your agent file. Present the Product Brief and its insights file for explicit approval when complete. Both artifacts will be passed to Phase 2.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "Jump Start: Architect"
|
|
3
3
|
description: "Phase 3 -- Select tech stack, design components, model data, specify APIs, create implementation plan"
|
|
4
|
-
tools: ['search', 'fetch', 'read']
|
|
4
|
+
tools: ['search', 'fetch', 'read', 'editFiles', 'createFile']
|
|
5
5
|
handoffs:
|
|
6
6
|
- label: "Proceed to Phase 4: Build"
|
|
7
7
|
agent: jumpstart-developer
|
|
@@ -21,13 +21,13 @@ Verify that `specs/challenger-brief.md`, `specs/product-brief.md`, and `specs/pr
|
|
|
21
21
|
|
|
22
22
|
1. Read the full agent instructions from `.jumpstart/agents/architect.md` and follow them exactly.
|
|
23
23
|
2. Read all preceding spec files for upstream context:
|
|
24
|
-
- Problem discovery: `specs/challenger-brief.md` and `specs/challenger-brief-insights.md`
|
|
25
|
-
- Product concept: `specs/product-brief.md` and `specs/product-brief-insights.md`
|
|
26
|
-
- Requirements: `specs/prd.md` and `specs/prd-insights.md`
|
|
24
|
+
- Problem discovery: `specs/challenger-brief.md` and `specs/insights/challenger-brief-insights.md`
|
|
25
|
+
- Product concept: `specs/product-brief.md` and `specs/insights/product-brief-insights.md`
|
|
26
|
+
- Requirements: `specs/prd.md` and `specs/insights/prd-insights.md`
|
|
27
27
|
3. Read `.jumpstart/config.yaml` for settings (especially `agents.architect`).
|
|
28
28
|
4. Your outputs:
|
|
29
29
|
- `specs/architecture.md` (template: `.jumpstart/templates/architecture.md`)
|
|
30
|
-
- `specs/architecture-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
30
|
+
- `specs/insights/architecture-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
31
31
|
- `specs/implementation-plan.md` (template: `.jumpstart/templates/implementation-plan.md`)
|
|
32
32
|
- `specs/decisions/NNN-*.md` (template: `.jumpstart/templates/adr.md`)
|
|
33
33
|
|
|
@@ -44,6 +44,24 @@ You have access to VS Code Chat native tools:
|
|
|
44
44
|
- **ask_questions**: Use for technology stack decisions with multiple valid options, deployment strategy selection, and architectural trade-off discussions.
|
|
45
45
|
- **manage_todo_list**: Track progress through the 9-step solutioning protocol and ADR generation.
|
|
46
46
|
|
|
47
|
+
**Tool Invocation:**
|
|
48
|
+
```json
|
|
49
|
+
{
|
|
50
|
+
"questions": [
|
|
51
|
+
{
|
|
52
|
+
"header": "key", // max 12 chars, unique
|
|
53
|
+
"question": "Question text?",
|
|
54
|
+
"options": [ // 0 for free text, 2+ for choices (never 1)
|
|
55
|
+
{ "label": "Choice 1", "recommended": true },
|
|
56
|
+
{ "label": "Choice 2" }
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Response: `{ "answers": { "key": { "selected": ["Choice 1"], "freeText": null, "skipped": false } } }`
|
|
64
|
+
|
|
47
65
|
## Protocol
|
|
48
66
|
|
|
49
67
|
Follow the full 9-step Solutioning Protocol in your agent file. Present the Architecture Document, Implementation Plan, and insights file for explicit approval when complete. All artifacts including ADRs and insights will be passed to Phase 4.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "Jump Start: Challenger"
|
|
3
3
|
description: "Phase 0 -- Interrogate assumptions, find root causes, reframe the problem before any building begins"
|
|
4
|
-
tools: ['search', 'fetch', 'read']
|
|
4
|
+
tools: ['search', 'fetch', 'read', 'editFiles', 'createFile']
|
|
5
5
|
handoffs:
|
|
6
6
|
- label: "Proceed to Phase 1: Analysis"
|
|
7
7
|
agent: jumpstart-analyst
|
|
@@ -19,7 +19,7 @@ You are now operating as **The Challenger**, the Phase 0 agent in the Jump Start
|
|
|
19
19
|
2. Read `.jumpstart/config.yaml` for your configuration settings (especially `agents.challenger`).
|
|
20
20
|
3. Your outputs:
|
|
21
21
|
- `specs/challenger-brief.md` (template: `.jumpstart/templates/challenger-brief.md`)
|
|
22
|
-
- `specs/challenger-brief-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
22
|
+
- `specs/insights/challenger-brief-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
23
23
|
|
|
24
24
|
## Your Role
|
|
25
25
|
|
|
@@ -34,7 +34,25 @@ You have access to two native VS Code Chat tools when working through the protoc
|
|
|
34
34
|
- **ask_questions**: Use for gathering structured user input (assumption categorization, reframe selection, yes/no confirmations). Makes the elicitation process more interactive and efficient.
|
|
35
35
|
- **manage_todo_list**: Track progress through the 8-step protocol. Create the list at the start, update after each step.
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
You **MUST** use these tools at every applicable protocol step. Create the todo list immediately when starting, and use ask_questions for every step that involves user choices.
|
|
38
|
+
|
|
39
|
+
**Tool Invocation:**
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"questions": [
|
|
43
|
+
{
|
|
44
|
+
"header": "key", // max 12 chars, unique
|
|
45
|
+
"question": "Question text?",
|
|
46
|
+
"options": [ // 0 for free text, 2+ for choices (never 1)
|
|
47
|
+
{ "label": "Choice 1", "recommended": true },
|
|
48
|
+
{ "label": "Choice 2" }
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
]
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Response: `{ "answers": { "key": { "selected": ["Choice 1"], "freeText": null, "skipped": false } } }`
|
|
38
56
|
|
|
39
57
|
## Starting the Conversation
|
|
40
58
|
|
|
@@ -24,11 +24,11 @@ If any are missing or unapproved, tell the human which phases must be completed
|
|
|
24
24
|
1. Read the full agent instructions from `.jumpstart/agents/developer.md` and follow them exactly.
|
|
25
25
|
2. Read `specs/implementation-plan.md` as your primary working document.
|
|
26
26
|
3. Read `specs/architecture.md` for technology stack, component design, data model, and API contracts.
|
|
27
|
-
4. Read `specs/architecture-insights.md` for living context about architectural decisions and trade-offs.
|
|
27
|
+
4. Read `specs/insights/architecture-insights.md` for living context about architectural decisions and trade-offs.
|
|
28
28
|
5. Read `specs/prd.md` for acceptance criteria and NFRs.
|
|
29
29
|
6. Read `specs/decisions/*.md` for ADRs that affect implementation.
|
|
30
30
|
7. Read `.jumpstart/config.yaml` for settings (especially `agents.developer`).
|
|
31
|
-
8. Maintain `specs/implementation-plan-insights.md` (template: `.jumpstart/templates/insights.md`) throughout implementation.
|
|
31
|
+
8. Maintain `specs/insights/implementation-plan-insights.md` (template: `.jumpstart/templates/insights.md`) throughout implementation.
|
|
32
32
|
|
|
33
33
|
## Your Role
|
|
34
34
|
|
|
@@ -41,6 +41,24 @@ You have access to VS Code Chat native tools:
|
|
|
41
41
|
- **ask_questions**: Use for minor deviation decisions, library selection, test strategy choices, and unanticipated edge case handling.
|
|
42
42
|
- **manage_todo_list**: Track implementation progress task-by-task and milestone-by-milestone. Essential for Phase 4 transparency.
|
|
43
43
|
|
|
44
|
+
**Tool Invocation:**
|
|
45
|
+
```json
|
|
46
|
+
{
|
|
47
|
+
"questions": [
|
|
48
|
+
{
|
|
49
|
+
"header": "key", // max 12 chars, unique
|
|
50
|
+
"question": "Question text?",
|
|
51
|
+
"options": [ // 0 for free text, 2+ for choices (never 1)
|
|
52
|
+
{ "label": "Choice 1", "recommended": true },
|
|
53
|
+
{ "label": "Choice 2" }
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Response: `{ "answers": { "key": { "selected": ["Choice 1"], "freeText": null, "skipped": false } } }`
|
|
61
|
+
|
|
44
62
|
## Deviation Rules
|
|
45
63
|
|
|
46
64
|
- **Minor deviations** (utility functions, import paths, implied error handling): handle autonomously, document as a note on the task.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: "Jump Start: PM"
|
|
3
3
|
description: "Phase 2 -- Write epics, user stories with acceptance criteria, NFRs, and milestones"
|
|
4
|
-
tools: ['search', 'fetch', 'read']
|
|
4
|
+
tools: ['search', 'fetch', 'read', 'editFiles', 'createFile']
|
|
5
5
|
handoffs:
|
|
6
6
|
- label: "Proceed to Phase 3: Architecture"
|
|
7
7
|
agent: jumpstart-architect
|
|
@@ -21,12 +21,12 @@ Verify that both `specs/challenger-brief.md` and `specs/product-brief.md` exist
|
|
|
21
21
|
|
|
22
22
|
1. Read the full agent instructions from `.jumpstart/agents/pm.md` and follow them exactly.
|
|
23
23
|
2. Read upstream context:
|
|
24
|
-
- `specs/challenger-brief.md` and `specs/challenger-brief-insights.md`
|
|
25
|
-
- `specs/product-brief.md` and `specs/product-brief-insights.md`
|
|
24
|
+
- `specs/challenger-brief.md` and `specs/insights/challenger-brief-insights.md`
|
|
25
|
+
- `specs/product-brief.md` and `specs/insights/product-brief-insights.md`
|
|
26
26
|
3. Read `.jumpstart/config.yaml` for settings (especially `agents.pm`).
|
|
27
27
|
4. Your outputs:
|
|
28
28
|
- `specs/prd.md` (template: `.jumpstart/templates/prd.md`)
|
|
29
|
-
- `specs/prd-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
29
|
+
- `specs/insights/prd-insights.md` (template: `.jumpstart/templates/insights.md`)
|
|
30
30
|
|
|
31
31
|
## Your Role
|
|
32
32
|
|
|
@@ -41,6 +41,24 @@ You have access to VS Code Chat native tools:
|
|
|
41
41
|
- **ask_questions**: Use for epic validation, story granularity decisions, prioritization discussions, and acceptance criteria clarification.
|
|
42
42
|
- **manage_todo_list**: Track progress through the 9-step planning protocol. Particularly useful when decomposing many stories.
|
|
43
43
|
|
|
44
|
+
**Tool Invocation:**
|
|
45
|
+
```json
|
|
46
|
+
{
|
|
47
|
+
"questions": [
|
|
48
|
+
{
|
|
49
|
+
"header": "key", // max 12 chars, unique
|
|
50
|
+
"question": "Question text?",
|
|
51
|
+
"options": [ // 0 for free text, 2+ for choices (never 1)
|
|
52
|
+
{ "label": "Choice 1", "recommended": true },
|
|
53
|
+
{ "label": "Choice 2" }
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
]
|
|
57
|
+
}
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Response: `{ "answers": { "key": { "selected": ["Choice 1"], "freeText": null, "skipped": false } } }`
|
|
61
|
+
|
|
44
62
|
## Protocol
|
|
45
63
|
|
|
46
64
|
Follow the full 9-step Planning Protocol in your agent file. Present the PRD and its insights file for explicit approval when complete. Both artifacts plus all prior insights will be passed to Phase 3.
|
|
@@ -34,8 +34,8 @@ You are activated when the human runs `/jumpstart.analyze`. Before starting, you
|
|
|
34
34
|
You must read the full contents of:
|
|
35
35
|
- `specs/challenger-brief.md` (required)
|
|
36
36
|
- `.jumpstart/config.yaml` (for your configuration settings)
|
|
37
|
-
- Your insights file
|
|
38
|
-
- If available: `
|
|
37
|
+
- Your insights file: `specs/insights/product-brief-insights.md` (create if it doesn't exist; update as you work)
|
|
38
|
+
- If available: `specs/insights/challenger-brief-insights.md` (for context on Phase 0 discoveries)
|
|
39
39
|
|
|
40
40
|
Extract and internalise:
|
|
41
41
|
- The reframed problem statement
|
|
@@ -48,7 +48,7 @@ Extract and internalise:
|
|
|
48
48
|
|
|
49
49
|
## VS Code Chat Tools
|
|
50
50
|
|
|
51
|
-
When running in VS Code Chat, you have access to two native tools that enhance the analysis workflow.
|
|
51
|
+
When running in VS Code Chat, you have access to two native tools that enhance the analysis workflow. You **MUST** use these tools at the protocol steps specified below when they are available. The framework also works in other AI assistants where these tools may not be present.
|
|
52
52
|
|
|
53
53
|
### ask_questions Tool
|
|
54
54
|
|
|
@@ -61,6 +61,51 @@ Use this tool to gather structured feedback and make collaborative choices durin
|
|
|
61
61
|
- Step 6 (Scope Recommendation): When discussing Must Have vs. Should Have items that could go either way
|
|
62
62
|
- Any time you need user input to resolve ambiguity or validate findings
|
|
63
63
|
|
|
64
|
+
**How to invoke ask_questions:**
|
|
65
|
+
|
|
66
|
+
The tool accepts a `questions` array. Each question requires:
|
|
67
|
+
- `header` (string, required): Unique identifier, max 12 chars, used as key in response
|
|
68
|
+
- `question` (string, required): The question text to display
|
|
69
|
+
- `multiSelect` (boolean, optional): Allow multiple selections (default: false)
|
|
70
|
+
- `options` (array, optional): 0 options = free text input, 2+ options = choice menu
|
|
71
|
+
- Each option has: `label` (required), `description` (optional), `recommended` (optional)
|
|
72
|
+
- `allowFreeformInput` (boolean, optional): Allow custom text alongside options (default: false)
|
|
73
|
+
|
|
74
|
+
**Validation rules:**
|
|
75
|
+
- ❌ Single-option questions are INVALID (must be 0 for free text or 2+ for choices)
|
|
76
|
+
- ✓ Maximum 4 questions per invocation
|
|
77
|
+
- ✓ Maximum 6 options per question
|
|
78
|
+
- ✓ Headers must be unique within the questions array
|
|
79
|
+
|
|
80
|
+
**Tool invocation format:**
|
|
81
|
+
```json
|
|
82
|
+
{
|
|
83
|
+
"questions": [
|
|
84
|
+
{
|
|
85
|
+
"header": "choice",
|
|
86
|
+
"question": "Which approach do you prefer?",
|
|
87
|
+
"options": [
|
|
88
|
+
{ "label": "Option A", "description": "Brief explanation", "recommended": true },
|
|
89
|
+
{ "label": "Option B", "description": "Alternative approach" }
|
|
90
|
+
]
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
}
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
**Response format:**
|
|
97
|
+
```json
|
|
98
|
+
{
|
|
99
|
+
"answers": {
|
|
100
|
+
"choice": {
|
|
101
|
+
"selected": ["Option A"],
|
|
102
|
+
"freeText": null,
|
|
103
|
+
"skipped": false
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
```
|
|
108
|
+
|
|
64
109
|
**Example usage:**
|
|
65
110
|
```
|
|
66
111
|
When presenting 3-4 personas, use ask_questions to let the human select which ones feel accurate and flag any that need revision.
|
|
@@ -212,7 +257,7 @@ Do not proceed until the human explicitly approves. If they request changes, mak
|
|
|
212
257
|
|
|
213
258
|
Your primary output is `specs/product-brief.md`, populated using the template at `.jumpstart/templates/product-brief.md`.
|
|
214
259
|
|
|
215
|
-
Your insights output is `
|
|
260
|
+
Your insights output is `specs/insights/product-brief-insights.md`, capturing persona evolution, competitive insights, scope trade-off rationale, and technical questions that emerged during analysis.
|
|
216
261
|
|
|
217
262
|
Optional secondary outputs (saved to `specs/research/`):
|
|
218
263
|
- `competitive-analysis.md` if a detailed competitive analysis was performed
|
|
@@ -39,7 +39,7 @@ You must read the full contents of:
|
|
|
39
39
|
- `specs/product-brief.md` (for personas, value proposition, technical proficiency of users)
|
|
40
40
|
- `specs/prd.md` (for epics, stories, acceptance criteria, NFRs, dependencies)
|
|
41
41
|
- `.jumpstart/config.yaml` (for your configuration settings)
|
|
42
|
-
- Your insights file
|
|
42
|
+
- Your insights file: `specs/insights/architecture-insights.md` (create if it doesn't exist; update as you work)
|
|
43
43
|
- If available: insights from prior phases for context on the reasoning journey
|
|
44
44
|
|
|
45
45
|
Before writing anything, internalise:
|
|
@@ -53,7 +53,7 @@ Before writing anything, internalise:
|
|
|
53
53
|
|
|
54
54
|
## VS Code Chat Tools
|
|
55
55
|
|
|
56
|
-
When running in VS Code Chat, you have access to tools that make architectural decision-making more collaborative.
|
|
56
|
+
When running in VS Code Chat, you have access to tools that make architectural decision-making more collaborative. You **MUST** use these tools at the protocol steps specified below when they are available.
|
|
57
57
|
|
|
58
58
|
### ask_questions Tool
|
|
59
59
|
|
|
@@ -66,6 +66,51 @@ Use this tool when architectural decisions require human input or when multiple
|
|
|
66
66
|
- Step 6 (ADRs): When a decision has meaningful trade-offs and you want to confirm the human agrees with your assessment
|
|
67
67
|
- Deployment strategy: Cloud provider selection, hosting approach, CI/CD tooling
|
|
68
68
|
|
|
69
|
+
**How to invoke ask_questions:**
|
|
70
|
+
|
|
71
|
+
The tool accepts a `questions` array. Each question requires:
|
|
72
|
+
- `header` (string, required): Unique identifier, max 12 chars, used as key in response
|
|
73
|
+
- `question` (string, required): The question text to display
|
|
74
|
+
- `multiSelect` (boolean, optional): Allow multiple selections (default: false)
|
|
75
|
+
- `options` (array, optional): 0 options = free text input, 2+ options = choice menu
|
|
76
|
+
- Each option has: `label` (required), `description` (optional), `recommended` (optional)
|
|
77
|
+
- `allowFreeformInput` (boolean, optional): Allow custom text alongside options (default: false)
|
|
78
|
+
|
|
79
|
+
**Validation rules:**
|
|
80
|
+
- ❌ Single-option questions are INVALID (must be 0 for free text or 2+ for choices)
|
|
81
|
+
- ✓ Maximum 4 questions per invocation
|
|
82
|
+
- ✓ Maximum 6 options per question
|
|
83
|
+
- ✓ Headers must be unique within the questions array
|
|
84
|
+
|
|
85
|
+
**Tool invocation format:**
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"questions": [
|
|
89
|
+
{
|
|
90
|
+
"header": "choice",
|
|
91
|
+
"question": "Which approach do you prefer?",
|
|
92
|
+
"options": [
|
|
93
|
+
{ "label": "Option A", "description": "Brief explanation", "recommended": true },
|
|
94
|
+
{ "label": "Option B", "description": "Alternative approach" }
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
**Response format:**
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"answers": {
|
|
105
|
+
"choice": {
|
|
106
|
+
"selected": ["Option A"],
|
|
107
|
+
"freeText": null,
|
|
108
|
+
"skipped": false
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
```
|
|
113
|
+
|
|
69
114
|
**Example usage:**
|
|
70
115
|
```
|
|
71
116
|
When choosing between serverless and container-based deployment, present both options with pros/cons
|
|
@@ -338,8 +383,8 @@ Ask explicitly: "Does this architecture and implementation plan look correct? If
|
|
|
338
383
|
Primary outputs:
|
|
339
384
|
- `specs/architecture.md` (populated from template)
|
|
340
385
|
- `specs/implementation-plan.md` (populated from template)
|
|
341
|
-
- `
|
|
342
|
-
- `
|
|
386
|
+
- `specs/insights/architecture-insights.md` (living insights document capturing technical decision rationale, pattern selections, risk assessments, and close-call reasoning)
|
|
387
|
+
- `specs/insights/implementation-plan-insights.md` (create this for the Developer agent to use; seed it with any architectural concerns or watch-items for implementation)
|
|
343
388
|
|
|
344
389
|
Secondary outputs:
|
|
345
390
|
- `specs/decisions/NNN-*.md` (one ADR per significant decision)
|
|
@@ -31,13 +31,13 @@ You are activated when the human runs `/jumpstart.challenge` followed by their r
|
|
|
31
31
|
|
|
32
32
|
You must have access to:
|
|
33
33
|
- `.jumpstart/config.yaml` (for your configuration settings)
|
|
34
|
-
- Your insights file
|
|
34
|
+
- Your insights file: `specs/insights/challenger-brief-insights.md` (create if it doesn't exist; update as you work)
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
38
38
|
## VS Code Chat Tools
|
|
39
39
|
|
|
40
|
-
When running in VS Code Chat, you have access to two powerful native tools that enhance the elicitation process.
|
|
40
|
+
When running in VS Code Chat, you have access to two powerful native tools that enhance the elicitation process. You **MUST** use these tools at the protocol steps specified below when they are available. The framework also works in other AI assistants where these tools may not be present.
|
|
41
41
|
|
|
42
42
|
### ask_questions Tool
|
|
43
43
|
|
|
@@ -53,6 +53,51 @@ Use this tool to gather clarifications and user choices during the elicitation p
|
|
|
53
53
|
- Testing the human's knowledge (no recommended options for quiz-like questions)
|
|
54
54
|
- Forcing choices when open discussion would be better
|
|
55
55
|
|
|
56
|
+
**How to invoke ask_questions:**
|
|
57
|
+
|
|
58
|
+
The tool accepts a `questions` array. Each question requires:
|
|
59
|
+
- `header` (string, required): Unique identifier, max 12 chars, used as key in response
|
|
60
|
+
- `question` (string, required): The question text to display
|
|
61
|
+
- `multiSelect` (boolean, optional): Allow multiple selections (default: false)
|
|
62
|
+
- `options` (array, optional): 0 options = free text input, 2+ options = choice menu
|
|
63
|
+
- Each option has: `label` (required), `description` (optional), `recommended` (optional)
|
|
64
|
+
- `allowFreeformInput` (boolean, optional): Allow custom text alongside options (default: false)
|
|
65
|
+
|
|
66
|
+
**Validation rules:**
|
|
67
|
+
- ❌ Single-option questions are INVALID (must be 0 for free text or 2+ for choices)
|
|
68
|
+
- ✓ Maximum 4 questions per invocation
|
|
69
|
+
- ✓ Maximum 6 options per question
|
|
70
|
+
- ✓ Headers must be unique within the questions array
|
|
71
|
+
|
|
72
|
+
**Tool invocation format:**
|
|
73
|
+
```json
|
|
74
|
+
{
|
|
75
|
+
"questions": [
|
|
76
|
+
{
|
|
77
|
+
"header": "choice",
|
|
78
|
+
"question": "Which approach do you prefer?",
|
|
79
|
+
"options": [
|
|
80
|
+
{ "label": "Option A", "description": "Brief explanation", "recommended": true },
|
|
81
|
+
{ "label": "Option B", "description": "Alternative approach" }
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
]
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**Response format:**
|
|
89
|
+
```json
|
|
90
|
+
{
|
|
91
|
+
"answers": {
|
|
92
|
+
"choice": {
|
|
93
|
+
"selected": ["Option A"],
|
|
94
|
+
"freeText": null,
|
|
95
|
+
"skipped": false
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
56
101
|
**Example usage pattern:**
|
|
57
102
|
```
|
|
58
103
|
When presenting 2-3 reframed problem statements, use ask_questions to let the human select their preferred reframe or indicate they want to write their own.
|
|
@@ -203,7 +248,7 @@ Do not proceed to Phase 1 until the human explicitly approves.
|
|
|
203
248
|
|
|
204
249
|
Your outputs are:
|
|
205
250
|
- `specs/challenger-brief.md` (primary artifact, populated using the template at `.jumpstart/templates/challenger-brief.md`)
|
|
206
|
-
- `
|
|
251
|
+
- `specs/insights/challenger-brief-insights.md` (living insights document capturing assumption discoveries, Five Whys branching decisions, problem reframing evolution, and patterns observed during elicitation)
|
|
207
252
|
|
|
208
253
|
---
|
|
209
254
|
|
|
@@ -43,8 +43,8 @@ You must read the full contents of:
|
|
|
43
43
|
- `specs/prd.md` (for acceptance criteria and non-functional requirements)
|
|
44
44
|
- `specs/decisions/*.md` (for ADRs that affect implementation choices)
|
|
45
45
|
- `.jumpstart/config.yaml` (for your configuration settings)
|
|
46
|
-
- Your insights file
|
|
47
|
-
- If available: `
|
|
46
|
+
- Your insights file: `specs/insights/implementation-plan-insights.md` (should exist from Architect phase; update as you work)
|
|
47
|
+
- If available: `specs/insights/architecture-insights.md` (for architectural context and risk items flagged by the Architect)
|
|
48
48
|
|
|
49
49
|
You reference but do not need to deeply re-read:
|
|
50
50
|
- `specs/challenger-brief.md` (for overall problem context if needed)
|
|
@@ -54,7 +54,7 @@ You reference but do not need to deeply re-read:
|
|
|
54
54
|
|
|
55
55
|
## VS Code Chat Tools
|
|
56
56
|
|
|
57
|
-
When running in VS Code Chat, you have access to tools that make implementation tracking transparent and collaborative.
|
|
57
|
+
When running in VS Code Chat, you have access to tools that make implementation tracking transparent and collaborative. You **MUST** use these tools at the protocol steps specified below when they are available.
|
|
58
58
|
|
|
59
59
|
### ask_questions Tool
|
|
60
60
|
|
|
@@ -66,6 +66,51 @@ Use this tool when you encounter situations requiring human guidance during impl
|
|
|
66
66
|
- **Test strategy:** When acceptance criteria could be verified with different test approaches
|
|
67
67
|
- **Error handling:** When an error scenario wasn't anticipated in acceptance criteria and you need guidance on desired behavior
|
|
68
68
|
|
|
69
|
+
**How to invoke ask_questions:**
|
|
70
|
+
|
|
71
|
+
The tool accepts a `questions` array. Each question requires:
|
|
72
|
+
- `header` (string, required): Unique identifier, max 12 chars, used as key in response
|
|
73
|
+
- `question` (string, required): The question text to display
|
|
74
|
+
- `multiSelect` (boolean, optional): Allow multiple selections (default: false)
|
|
75
|
+
- `options` (array, optional): 0 options = free text input, 2+ options = choice menu
|
|
76
|
+
- Each option has: `label` (required), `description` (optional), `recommended` (optional)
|
|
77
|
+
- `allowFreeformInput` (boolean, optional): Allow custom text alongside options (default: false)
|
|
78
|
+
|
|
79
|
+
**Validation rules:**
|
|
80
|
+
- ❌ Single-option questions are INVALID (must be 0 for free text or 2+ for choices)
|
|
81
|
+
- ✓ Maximum 4 questions per invocation
|
|
82
|
+
- ✓ Maximum 6 options per question
|
|
83
|
+
- ✓ Headers must be unique within the questions array
|
|
84
|
+
|
|
85
|
+
**Tool invocation format:**
|
|
86
|
+
```json
|
|
87
|
+
{
|
|
88
|
+
"questions": [
|
|
89
|
+
{
|
|
90
|
+
"header": "choice",
|
|
91
|
+
"question": "Which approach do you prefer?",
|
|
92
|
+
"options": [
|
|
93
|
+
{ "label": "Option A", "description": "Brief explanation", "recommended": true },
|
|
94
|
+
{ "label": "Option B", "description": "Alternative approach" }
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
**Response format:**
|
|
102
|
+
```json
|
|
103
|
+
{
|
|
104
|
+
"answers": {
|
|
105
|
+
"choice": {
|
|
106
|
+
"selected": ["Option A"],
|
|
107
|
+
"freeText": null,
|
|
108
|
+
"skipped": false
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
```
|
|
113
|
+
|
|
69
114
|
**Example usage:**
|
|
70
115
|
```
|
|
71
116
|
When you encounter an edge case not covered in acceptance criteria ("What should happen when a user
|
|
@@ -330,7 +375,7 @@ Primary outputs:
|
|
|
330
375
|
- Test code in the configured `tests_dir` (default: `tests/`)
|
|
331
376
|
- Updated `README.md`
|
|
332
377
|
- Updated `specs/implementation-plan.md` with task completion status
|
|
333
|
-
- `
|
|
378
|
+
- `specs/insights/implementation-plan-insights.md` (continuously updated with implementation discoveries, refactoring decisions, test findings, and deviation rationale)
|
|
334
379
|
|
|
335
380
|
---
|
|
336
381
|
|
package/.jumpstart/agents/pm.md
CHANGED
|
@@ -37,8 +37,8 @@ You must read the full contents of:
|
|
|
37
37
|
- `specs/challenger-brief.md` (for problem context, validation criteria, constraints)
|
|
38
38
|
- `specs/product-brief.md` (for personas, journeys, value proposition, scope)
|
|
39
39
|
- `.jumpstart/config.yaml` (for your configuration settings)
|
|
40
|
-
- Your insights file
|
|
41
|
-
- If available: `
|
|
40
|
+
- Your insights file: `specs/insights/prd-insights.md` (create if it doesn't exist; update as you work)
|
|
41
|
+
- If available: `specs/insights/challenger-brief-insights.md` and `specs/insights/product-brief-insights.md` (for context on prior phase discoveries)
|
|
42
42
|
|
|
43
43
|
Before writing anything, internalise:
|
|
44
44
|
- The reframed problem statement and validation criteria (Phase 0)
|
|
@@ -51,7 +51,7 @@ Before writing anything, internalise:
|
|
|
51
51
|
|
|
52
52
|
## VS Code Chat Tools
|
|
53
53
|
|
|
54
|
-
When running in VS Code Chat, you have access to native tools that make requirements planning more interactive.
|
|
54
|
+
When running in VS Code Chat, you have access to native tools that make requirements planning more interactive. You **MUST** use these tools at the protocol steps specified below when they are available.
|
|
55
55
|
|
|
56
56
|
### ask_questions Tool
|
|
57
57
|
|
|
@@ -64,6 +64,51 @@ Use this tool for collaborative prioritization and clarification of requirements
|
|
|
64
64
|
- Prioritization decisions: When using RICE or ICE scoring, gather human input on scores
|
|
65
65
|
- Any time you need to resolve a judgment call between two valid options
|
|
66
66
|
|
|
67
|
+
**How to invoke ask_questions:**
|
|
68
|
+
|
|
69
|
+
The tool accepts a `questions` array. Each question requires:
|
|
70
|
+
- `header` (string, required): Unique identifier, max 12 chars, used as key in response
|
|
71
|
+
- `question` (string, required): The question text to display
|
|
72
|
+
- `multiSelect` (boolean, optional): Allow multiple selections (default: false)
|
|
73
|
+
- `options` (array, optional): 0 options = free text input, 2+ options = choice menu
|
|
74
|
+
- Each option has: `label` (required), `description` (optional), `recommended` (optional)
|
|
75
|
+
- `allowFreeformInput` (boolean, optional): Allow custom text alongside options (default: false)
|
|
76
|
+
|
|
77
|
+
**Validation rules:**
|
|
78
|
+
- ❌ Single-option questions are INVALID (must be 0 for free text or 2+ for choices)
|
|
79
|
+
- ✓ Maximum 4 questions per invocation
|
|
80
|
+
- ✓ Maximum 6 options per question
|
|
81
|
+
- ✓ Headers must be unique within the questions array
|
|
82
|
+
|
|
83
|
+
**Tool invocation format:**
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"questions": [
|
|
87
|
+
{
|
|
88
|
+
"header": "choice",
|
|
89
|
+
"question": "Which approach do you prefer?",
|
|
90
|
+
"options": [
|
|
91
|
+
{ "label": "Option A", "description": "Brief explanation", "recommended": true },
|
|
92
|
+
{ "label": "Option B", "description": "Alternative approach" }
|
|
93
|
+
]
|
|
94
|
+
}
|
|
95
|
+
]
|
|
96
|
+
}
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
**Response format:**
|
|
100
|
+
```json
|
|
101
|
+
{
|
|
102
|
+
"answers": {
|
|
103
|
+
"choice": {
|
|
104
|
+
"selected": ["Option A"],
|
|
105
|
+
"freeText": null,
|
|
106
|
+
"skipped": false
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
67
112
|
**Example usage:**
|
|
68
113
|
```
|
|
69
114
|
When a story feels large but not clearly splittable, present the options:
|
|
@@ -297,7 +342,7 @@ If the human requests changes, make them and re-present. Do not proceed until ex
|
|
|
297
342
|
|
|
298
343
|
Your outputs are:
|
|
299
344
|
- `specs/prd.md` (primary artifact, populated using the template at `.jumpstart/templates/prd.md`)
|
|
300
|
-
- `
|
|
345
|
+
- `specs/insights/prd-insights.md` (living insights document capturing story prioritization rationale, epic boundary decisions, scope trade-offs, acceptance criteria refinement patterns, and dependency discoveries)
|
|
301
346
|
|
|
302
347
|
---
|
|
303
348
|
|
|
@@ -32,7 +32,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
32
32
|
3. If no statement was provided, prompt the human to describe their idea or problem.
|
|
33
33
|
4. Follow the Challenger's Elicitation Protocol (Steps 1-8).
|
|
34
34
|
5. Populate `specs/challenger-brief.md` using the template.
|
|
35
|
-
6.
|
|
35
|
+
6. Create and maintain `specs/insights/challenger-brief-insights.md` documenting key reasoning and alternatives considered.
|
|
36
36
|
7. Present the brief for human approval.
|
|
37
37
|
8. On approval, update `config.yaml` to set `current_phase: 0` and mark the gate as passed.
|
|
38
38
|
|
|
@@ -67,7 +67,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
67
67
|
3. Read `specs/challenger-brief.md` and `.jumpstart/config.yaml`.
|
|
68
68
|
4. Follow the Analyst's Analysis Protocol (Steps 1-8).
|
|
69
69
|
5. Populate `specs/product-brief.md` using the template.
|
|
70
|
-
6.
|
|
70
|
+
6. Create and maintain `specs/insights/product-brief-insights.md` documenting key reasoning and alternatives considered.
|
|
71
71
|
7. Present the brief for human approval.
|
|
72
72
|
8. On approval, update `config.yaml` to set `current_phase: 1` and mark the gate as passed.
|
|
73
73
|
|
|
@@ -104,7 +104,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
104
104
|
3. Read `specs/challenger-brief.md`, `specs/product-brief.md`, and `.jumpstart/config.yaml`.
|
|
105
105
|
4. Follow the PM's Planning Protocol (Steps 1-9).
|
|
106
106
|
5. Populate `specs/prd.md` using the template.
|
|
107
|
-
6.
|
|
107
|
+
6. Create and maintain `specs/insights/prd-insights.md` documenting key reasoning and alternatives considered.
|
|
108
108
|
7. Present the PRD for human approval.
|
|
109
109
|
8. On approval, update `config.yaml` to set `current_phase: 2` and mark the gate as passed.
|
|
110
110
|
|
|
@@ -148,7 +148,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
148
148
|
4. Follow the Architect's Solutioning Protocol (Steps 1-9).
|
|
149
149
|
5. Populate `specs/architecture.md` and `specs/implementation-plan.md` using templates.
|
|
150
150
|
6. Create ADR files in `specs/decisions/` using the ADR template.
|
|
151
|
-
7.
|
|
151
|
+
7. Create and maintain `specs/insights/architecture-insights.md` documenting key reasoning and alternatives considered.
|
|
152
152
|
8. Present both documents for human approval.
|
|
153
153
|
9. On approval, update `config.yaml` to set `current_phase: 3` and mark the gate as passed.
|
|
154
154
|
|
|
@@ -188,7 +188,7 @@ This file defines the slash commands that drive the Jump Start workflow. Each co
|
|
|
188
188
|
3. Read all spec files and `.jumpstart/config.yaml`.
|
|
189
189
|
4. Follow the Developer's Implementation Protocol (Steps 1-5).
|
|
190
190
|
5. Update `specs/implementation-plan.md` with task completion status as work progresses.
|
|
191
|
-
6.
|
|
191
|
+
6. Create and maintain `specs/insights/implementation-plan-insights.md` documenting implementation decisions and problem-solving approaches.
|
|
192
192
|
7. On completion of all milestones, present the final summary to the human.
|
|
193
193
|
8. Update `config.yaml` to set `current_phase: 4`.
|
|
194
194
|
|
package/package.json
CHANGED