@ngocsangairvds/vsaf 4.0.7 → 4.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +7 -5
  2. package/package.json +2 -2
  3. package/packages/cli/dist/commands/init.d.ts.map +1 -1
  4. package/packages/cli/dist/commands/init.js +25 -14
  5. package/packages/cli/dist/commands/init.js.map +1 -1
  6. package/packages/cli/dist/commands/install.d.ts.map +1 -1
  7. package/packages/cli/dist/commands/install.js +12 -0
  8. package/packages/cli/dist/commands/install.js.map +1 -1
  9. package/packages/cli/dist/commands/skill.js +8 -8
  10. package/packages/cli/dist/commands/skill.js.map +1 -1
  11. package/packages/core/dist/skills/skill-loader.d.ts.map +1 -1
  12. package/packages/core/dist/skills/skill-loader.js +9 -4
  13. package/packages/core/dist/skills/skill-loader.js.map +1 -1
  14. package/skills/sdlc/architecture/SKILL.md +22 -8
  15. package/skills/sdlc/bmad-checkpoint-preview/SKILL.md +29 -0
  16. package/skills/sdlc/bmad-checkpoint-preview/generate-trail.md +38 -0
  17. package/skills/sdlc/bmad-checkpoint-preview/step-01-orientation.md +105 -0
  18. package/skills/sdlc/bmad-checkpoint-preview/step-02-walkthrough.md +89 -0
  19. package/skills/sdlc/bmad-checkpoint-preview/step-03-detail-pass.md +106 -0
  20. package/skills/sdlc/bmad-checkpoint-preview/step-04-testing.md +74 -0
  21. package/skills/sdlc/bmad-checkpoint-preview/step-05-wrapup.md +24 -0
  22. package/skills/sdlc/bmad-correct-course/SKILL.md +6 -0
  23. package/skills/sdlc/bmad-correct-course/checklist.md +288 -0
  24. package/skills/sdlc/bmad-correct-course/workflow.md +267 -0
  25. package/skills/sdlc/discovery/SKILL.md +2 -2
  26. package/skills/sdlc/install-deps.mjs +19 -3
  27. package/skills/sdlc/pack.yaml +3 -1
  28. package/skills/sdlc/prd/SKILL.md +20 -5
  29. package/skills/sdlc/review/SKILL.md +9 -5
  30. package/skills/sdlc/sdlc-health/SKILL.md +5 -3
  31. package/skills/sdlc/setup/SKILL.md +1 -1
  32. package/skills/sdlc/srs/SKILL.md +7 -6
  33. package/skills/sdlc/test-design/SKILL.md +10 -6
  34. package/skills/sdlc/workflows/hotfix-tdd.yaml +2 -2
  35. package/skills/sdlc/workflows/hotfix.yaml +5 -5
  36. package/skills/sdlc/workflows/master-sdlc.yaml +9 -9
  37. package/skills/sdlc/workflows/onboarding.yaml +2 -2
  38. package/skills/sdlc/workflows/sdlc-build.yaml +1 -1
  39. package/skills/sdlc/workflows/sdlc-design.yaml +2 -2
  40. package/skills/sdlc/workflows/sdlc-qa.yaml +3 -3
  41. package/skills/sdlc/workflows/sdlc-testcase.yaml +1 -1
  42. package/skills/sdlc/workflows/sdlc-thinking.yaml +2 -2
@@ -0,0 +1,89 @@
1
+ # Step 2: Walkthrough
2
+
3
+ Display: `Orientation → [Walkthrough] → Detail Pass → Testing`
4
+
5
+ ## Follow Global Step Rules in SKILL.md
6
+
7
+ - Organize by **concern**, not by file. A concern is a cohesive design intent — e.g., "input validation," "state management," "API contract." One file may appear under multiple concerns; one concern may span multiple files.
8
+ - The walkthrough activates **design judgment**, not correctness checking. Frame each concern as "here's what this change does and why" — the human evaluates whether it's the right approach for the system.
9
+
10
+ ## BUILD THE WALKTHROUGH
11
+
12
+ ### Identify Concerns
13
+
14
+ **With Suggested Review Order** (`full-trail` mode — the normal path, including when step-01 generated a trail):
15
+
16
+ 1. Read the Suggested Review Order stops from the spec (or from conversation context if generated by step-01 fallback).
17
+ 2. Resolve each stop to a file in the current repo. Output in `path:line` format per the standing rule.
18
+ 3. Read the diff to understand what each stop actually does.
19
+ 4. Group stops by concern. Stops that share a design intent belong together even if they're in different files. A stop may appear under multiple concerns if it serves multiple purposes.
20
+
21
+ **Without Suggested Review Order** (fallback when trail generation failed, e.g., git unavailable):
22
+
23
+ 1. Get the diff against the appropriate baseline (same rules as step 1).
24
+ 2. Identify concerns by reading the diff for cohesive design intents:
25
+ - Functional groupings — what user-facing behavior does each cluster of changes support?
26
+ - Architectural layers — does the change cross boundaries (API → service → data)?
27
+ - Design decisions — where did the author choose between alternatives?
28
+ 3. For each concern, identify the key code locations as `path:line` stops.
29
+
30
+ ### Order for Comprehension
31
+
32
+ Sequence concerns top-down: start with the highest-level intent (the "what and why"), then drill into supporting implementation. Within each concern, order stops so each one builds on the previous. The reader should never encounter a reference to something they haven't seen yet.
33
+
34
+ If the change has a natural entry point (e.g., a new public API, a config change, a UI entry point), lead with it.
35
+
36
+ ### Write Each Concern
37
+
38
+ For each concern, produce:
39
+
40
+ 1. **Heading** — a short phrase naming the design intent (not a file name, not a module name).
41
+ 2. **Why** — 1–2 sentences: what problem this concern addresses, why this approach was chosen over alternatives. If the spec documents rejected alternatives, reference them here.
42
+ 3. **Stops** — each stop on its own line: `path:line` followed by a brief phrase (not a sentence) describing what this location does for the concern. Keep framing under 15 words per stop.
43
+
44
+ Target 2–5 concerns for a typical change. A single-concern change is fine — don't invent groupings. A change with more than 7 concerns is a signal the scope may be too large, but present it anyway.
45
+
46
+ ## PRESENT
47
+
48
+ Output the full walkthrough as a single message with this structure:
49
+
50
+ ```
51
+ Orientation → [Walkthrough] → Detail Pass → Testing
52
+ ```
53
+
54
+ Then each concern group using this format:
55
+
56
+ ```
57
+ ### {Concern Heading}
58
+
59
+ {Why — 1–2 sentences}
60
+
61
+ - `path:line` — {brief framing}
62
+ - `path:line` — {brief framing}
63
+ - ...
64
+ ```
65
+
66
+ End the message with:
67
+
68
+ ```
69
+ ---
70
+
71
+ Take your time — click through the stops, read the diff, trace the logic. While you are reviewing, you can:
72
+ - "run advanced elicitation on the error handling"
73
+ - "party mode on whether this schema migration is safe"
74
+ - or just ask anything
75
+
76
+ When you're ready, say **next** and I'll surface the highest-risk spots.
77
+ ```
78
+
79
+ ## EARLY EXIT
80
+
81
+ If at any point the human signals they want to make a decision about this {change_type} (e.g., "let's ship it", "this needs a rethink", "I'm done reviewing", or anything suggesting they're ready to decide), confirm their intent:
82
+
83
+ - If they want to **approve and ship** → read fully and follow `./step-05-wrapup.md`
84
+ - If they want to **reject and rework** → read fully and follow `./step-05-wrapup.md`
85
+ - If you misread them → acknowledge and continue the current step.
86
+
87
+ ## NEXT
88
+
89
+ Default: read fully and follow `./step-03-detail-pass.md`
@@ -0,0 +1,106 @@
1
+ # Step 3: Detail Pass
2
+
3
+ Display: `Orientation → Walkthrough → [Detail Pass] → Testing`
4
+
5
+ ## Follow Global Step Rules in SKILL.md
6
+
7
+ - The detail pass surfaces what the human should **think about**, not what the code got wrong. Machine hardening already handled correctness. This activates risk awareness.
8
+ - The LLM detects risk category by pattern. The human judges significance. Do not assign severity scores or numeric rankings — ordering by blast radius (below) is sequencing for readability, not a severity judgment.
9
+ - If no high-risk spots exist, say so explicitly. Do not invent findings.
10
+
11
+ ## IDENTIFY RISK SPOTS
12
+
13
+ Scan the diff for changes touching risk-sensitive patterns. Look for 2–5 spots where a mistake would have the highest blast radius — not the most complex code, but the code where being wrong costs the most.
14
+
15
+ Risk categories to detect:
16
+
17
+ - `[auth]` — authentication, authorization, session, token, permission, access control
18
+ - `[public API]` — new/changed endpoints, exports, public methods, interface contracts
19
+ - `[schema]` — database migrations, schema changes, data model modifications, serialization
20
+ - `[billing]` — payment, pricing, subscription, metering, usage tracking
21
+ - `[infra]` — deployment, CI/CD, environment variables, config files, infrastructure
22
+ - `[security]` — input validation, sanitization, crypto, secrets, CORS, CSP
23
+ - `[config]` — feature flags, environment-dependent behavior, defaults
24
+ - `[other]` — anything risk-sensitive that doesn't fit the above (e.g., concurrency, data privacy, backwards compatibility). Use a descriptive tag.
25
+
26
+ Sequence spots so the highest blast radius comes first (how much breaks if this is wrong), not by diff order or file order. If more than 5 spots qualify, show the top 5 and note: "N additional spots omitted — ask if you want the full list."
27
+
28
+ If the change has no spots matching these patterns, state: "No high-risk spots found in this change — the diff speaks for itself." Do not force findings.
29
+
30
+ ## SURFACE MACHINE HARDENING FINDINGS
31
+
32
+ Check whether the spec has a `## Spec Change Log` section with entries (populated by adversarial review loops).
33
+
34
+ - **If entries exist:** Read them. Surface findings that are instructive for the human reviewer — not bugs that were already fixed, but decisions the review loop flagged that the human should be aware of. Format: brief summary of what was flagged and what was decided.
35
+ - **If no entries or no spec:** Skip this section entirely. Do not mention it.
36
+
37
+ ## PRESENT
38
+
39
+ Output as a single message:
40
+
41
+ ```
42
+ Orientation → Walkthrough → [Detail Pass] → Testing
43
+ ```
44
+
45
+ ### Risk Spots
46
+
47
+ For each spot, one line:
48
+
49
+ ```
50
+ - `path:line` — [tag] reason-phrase
51
+ ```
52
+
53
+ Example:
54
+
55
+ ```
56
+ - `src/auth/middleware.ts:42` — [auth] New token validation bypasses rate limiter
57
+ - `migrations/003_add_index.sql:7` — [schema] Index on high-write table, check lock behavior
58
+ - `api/routes/billing.ts:118` — [billing] Metering calculation changed, verify idempotency
59
+ ```
60
+
61
+ ### Machine Hardening (only if findings exist)
62
+
63
+ ```
64
+ ### Machine Hardening
65
+
66
+ - Finding summary — what was flagged, what was decided
67
+ - ...
68
+ ```
69
+
70
+ ### Closing menu
71
+
72
+ End the message with:
73
+
74
+ ```
75
+ ---
76
+
77
+ You've seen the design and the risk landscape. From here:
78
+ - **"dig into [area]"** — I'll deep-dive that specific area with correctness focus
79
+ - **"next"** — I'll suggest how to observe the behavior
80
+ ```
81
+
82
+ ## EARLY EXIT
83
+
84
+ If at any point the human signals they want to make a decision about this {change_type} (e.g., "let's ship it", "this needs a rethink", "I'm done reviewing", or anything suggesting they're ready to decide), confirm their intent:
85
+
86
+ - If they want to **approve and ship** → read fully and follow `./step-05-wrapup.md`
87
+ - If they want to **reject and rework** → read fully and follow `./step-05-wrapup.md`
88
+ - If you misread them → acknowledge and continue the current step.
89
+
90
+ ## TARGETED RE-REVIEW
91
+
92
+ When the human says "dig into [area]" (e.g., "dig into the auth changes", "dig into the schema migration"):
93
+
94
+ 1. If the specified area does not map to any code in the diff, say so: "I don't see [area] in this change — did you mean something else?" Return to the closing menu.
95
+ 2. Identify all code locations in the diff relevant to the specified area.
96
+ 3. Read each location in full context (not just the diff hunk — read surrounding code).
97
+ 4. Shift to **correctness mode**: trace edge cases, check boundary conditions, verify error handling, look for off-by-one errors, race conditions, resource leaks.
98
+ 5. Present findings as a compact list — each finding is `path:line` + what you found + why it matters.
99
+ 6. If nothing concerning is found, say so: "Looked closely at [area] — nothing concerning. The implementation is solid."
100
+ 7. After presenting, show only the closing menu (not the full risk spots list again).
101
+
102
+ The human can trigger multiple targeted re-reviews. Each time, present new findings and the closing menu only.
103
+
104
+ ## NEXT
105
+
106
+ Read fully and follow `./step-04-testing.md`
@@ -0,0 +1,74 @@
1
+ # Step 4: Testing
2
+
3
+ Display: `Orientation → Walkthrough → Detail Pass → [Testing]`
4
+
5
+ ## Follow Global Step Rules in SKILL.md
6
+
7
+ - This is **experiential**, not analytical. The detail pass asked "did you think about X?" — this says "you could see X with your own eyes."
8
+ - Do not prescribe. The human decides whether observing the behavior is worth their time. Frame suggestions as options, not obligations.
9
+ - Do not duplicate CI, test suites, or automated checks. Assume those exist and work. This is about manual observation — the kind of confidence-building no automated test provides.
10
+ - If the change has no user-visible behavior, say so explicitly. Do not invent observations.
11
+
12
+ ## IDENTIFY OBSERVABLE BEHAVIOR
13
+
14
+ Scan the diff and spec for changes that produce behavior a human could directly observe. Categories to look for:
15
+
16
+ - **UI changes** — new screens, modified layouts, changed interactions, error states
17
+ - **CLI/terminal output** — new commands, changed output, new flags or options
18
+ - **API responses** — new endpoints, changed payloads, different status codes
19
+ - **State changes** — database records, file system artifacts, config effects
20
+ - **Error paths** — bad input, missing dependencies, edge conditions
21
+
22
+ For each observable behavior, determine:
23
+
24
+ 1. **What to do** — the specific action (command to run, button to click, request to send)
25
+ 2. **What to expect** — the observable result that confirms the change works
26
+ 3. **Why bother** — one phrase connecting this observation to the change's intent (omit if obvious from context)
27
+
28
+ Target 2–5 suggestions for a typical change. If more than 5 qualify, prioritize by how much confidence the observation provides relative to effort. A change with zero observable behavior is fine — do not pad with trivial observations.
29
+
30
+ ## PRESENT
31
+
32
+ Output as a single message:
33
+
34
+ ```
35
+ Orientation → Walkthrough → Detail Pass → [Testing]
36
+ ```
37
+
38
+ Then the testing suggestions using this format:
39
+
40
+ ```
41
+ ### How to See It Working
42
+
43
+ **{Brief description}**
44
+ Do: {specific action}
45
+ Expect: {observable result}
46
+
47
+ **{Brief description}**
48
+ Do: {specific action}
49
+ Expect: {observable result}
50
+ ```
51
+
52
+ Include code blocks for commands or requests where helpful.
53
+
54
+ If the change has no observable behavior, replace the suggestions with:
55
+
56
+ ```
57
+ ### How to See It Working
58
+
59
+ This change is internal — no user-visible behavior to observe. The diff and tests tell the full story.
60
+ ```
61
+
62
+ ### Closing
63
+
64
+ End the message with:
65
+
66
+ ```
67
+ ---
68
+
69
+ You've seen the change and how to verify it. When you're ready to make a call, just say so.
70
+ ```
71
+
72
+ ## NEXT
73
+
74
+ When the human signals they're ready to make a decision about this {change_type}, read fully and follow `./step-05-wrapup.md`
@@ -0,0 +1,24 @@
1
+ # Step 5: Wrap-Up
2
+
3
+ Display: `Orientation → Walkthrough → Detail Pass → Testing → [Wrap-Up]`
4
+
5
+ ## Follow Global Step Rules in SKILL.md
6
+
7
+ ## PROMPT FOR DECISION
8
+
9
+ ```
10
+ ---
11
+
12
+ Review complete. What's the call on this {change_type}?
13
+ - **Approve** — ship it (I can help with interactive patching first if needed)
14
+ - **Rework** — back to the drawing board (revert, revise the spec, try a different approach)
15
+ - **Discuss** — something's still on your mind
16
+ ```
17
+
18
+ HALT — do not proceed until the user makes their choice.
19
+
20
+ ## ACT ON DECISION
21
+
22
+ - **Approve**: Acknowledge briefly. If the human wants to patch something before shipping, help apply the fix interactively. If reviewing a PR, offer to approve via `gh pr review --approve` — but confirm with the human before executing, since this is a visible action on a shared resource.
23
+ - **Rework**: Ask what went wrong — was it the approach, the spec, or the implementation? Help the human decide on next steps (revert commit, open an issue, revise the spec, etc.). Help draft specific, actionable feedback tied to `path:line` locations if the change is a PR from someone else.
24
+ - **Discuss**: Open conversation — answer questions, explore concerns, dig into any aspect. After discussion, return to the decision prompt above.
@@ -0,0 +1,6 @@
1
+ ---
2
+ name: bmad-correct-course
3
+ description: 'Manage significant changes during sprint execution. Use when the user says "correct course" or "propose sprint change"'
4
+ ---
5
+
6
+ Follow the instructions in ./workflow.md.
@@ -0,0 +1,288 @@
1
+ # Change Navigation Checklist
2
+
3
+ <critical>This checklist is executed as part of: ./workflow.md</critical>
4
+ <critical>Work through each section systematically with the user, recording findings and impacts</critical>
5
+
6
+ <checklist>
7
+
8
+ <section n="1" title="Understand the Trigger and Context">
9
+
10
+ <check-item id="1.1">
11
+ <prompt>Identify the triggering story that revealed this issue</prompt>
12
+ <action>Document story ID and brief description</action>
13
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
14
+ </check-item>
15
+
16
+ <check-item id="1.2">
17
+ <prompt>Define the core problem precisely</prompt>
18
+ <action>Categorize issue type:</action>
19
+ - Technical limitation discovered during implementation
20
+ - New requirement emerged from stakeholders
21
+ - Misunderstanding of original requirements
22
+ - Strategic pivot or market change
23
+ - Failed approach requiring different solution
24
+ <action>Write clear problem statement</action>
25
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
26
+ </check-item>
27
+
28
+ <check-item id="1.3">
29
+ <prompt>Assess initial impact and gather supporting evidence</prompt>
30
+ <action>Collect concrete examples, error messages, stakeholder feedback, or technical constraints</action>
31
+ <action>Document evidence for later reference</action>
32
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
33
+ </check-item>
34
+
35
+ <halt-condition>
36
+ <action if="trigger is unclear">HALT: "Cannot proceed without understanding what caused the need for change"</action>
37
+ <action if="no evidence provided">HALT: "Need concrete evidence or examples of the issue before analyzing impact"</action>
38
+ </halt-condition>
39
+
40
+ </section>
41
+
42
+ <section n="2" title="Epic Impact Assessment">
43
+
44
+ <check-item id="2.1">
45
+ <prompt>Evaluate current epic containing the trigger story</prompt>
46
+ <action>Can this epic still be completed as originally planned?</action>
47
+ <action>If no, what modifications are needed?</action>
48
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
49
+ </check-item>
50
+
51
+ <check-item id="2.2">
52
+ <prompt>Determine required epic-level changes</prompt>
53
+ <action>Check each scenario:</action>
54
+ - Modify existing epic scope or acceptance criteria
55
+ - Add new epic to address the issue
56
+ - Remove or defer epic that's no longer viable
57
+ - Completely redefine epic based on new understanding
58
+ <action>Document specific epic changes needed</action>
59
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
60
+ </check-item>
61
+
62
+ <check-item id="2.3">
63
+ <prompt>Review all remaining planned epics for required changes</prompt>
64
+ <action>Check each future epic for impact</action>
65
+ <action>Identify dependencies that may be affected</action>
66
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
67
+ </check-item>
68
+
69
+ <check-item id="2.4">
70
+ <prompt>Check if issue invalidates future epics or necessitates new ones</prompt>
71
+ <action>Does this change make any planned epics obsolete?</action>
72
+ <action>Are new epics needed to address gaps created by this change?</action>
73
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
74
+ </check-item>
75
+
76
+ <check-item id="2.5">
77
+ <prompt>Consider if epic order or priority should change</prompt>
78
+ <action>Should epics be resequenced based on this issue?</action>
79
+ <action>Do priorities need adjustment?</action>
80
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
81
+ </check-item>
82
+
83
+ </section>
84
+
85
+ <section n="3" title="Artifact Conflict and Impact Analysis">
86
+
87
+ <check-item id="3.1">
88
+ <prompt>Check PRD for conflicts</prompt>
89
+ <action>Does issue conflict with core PRD goals or objectives?</action>
90
+ <action>Do requirements need modification, addition, or removal?</action>
91
+ <action>Is the defined MVP still achievable or does scope need adjustment?</action>
92
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
93
+ </check-item>
94
+
95
+ <check-item id="3.2">
96
+ <prompt>Review Architecture document for conflicts</prompt>
97
+ <action>Check each area for impact:</action>
98
+ - System components and their interactions
99
+ - Architectural patterns and design decisions
100
+ - Technology stack choices
101
+ - Data models and schemas
102
+ - API designs and contracts
103
+ - Integration points
104
+ <action>Document specific architecture sections requiring updates</action>
105
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
106
+ </check-item>
107
+
108
+ <check-item id="3.3">
109
+ <prompt>Examine UI/UX specifications for conflicts</prompt>
110
+ <action>Check for impact on:</action>
111
+ - User interface components
112
+ - User flows and journeys
113
+ - Wireframes or mockups
114
+ - Interaction patterns
115
+ - Accessibility considerations
116
+ <action>Note specific UI/UX sections needing revision</action>
117
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
118
+ </check-item>
119
+
120
+ <check-item id="3.4">
121
+ <prompt>Consider impact on other artifacts</prompt>
122
+ <action>Review additional artifacts for impact:</action>
123
+ - Deployment scripts
124
+ - Infrastructure as Code (IaC)
125
+ - Monitoring and observability setup
126
+ - Testing strategies
127
+ - Documentation
128
+ - CI/CD pipelines
129
+ <action>Document any secondary artifacts requiring updates</action>
130
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
131
+ </check-item>
132
+
133
+ </section>
134
+
135
+ <section n="4" title="Path Forward Evaluation">
136
+
137
+ <check-item id="4.1">
138
+ <prompt>Evaluate Option 1: Direct Adjustment</prompt>
139
+ <action>Can the issue be addressed by modifying existing stories?</action>
140
+ <action>Can new stories be added within the current epic structure?</action>
141
+ <action>Would this approach maintain project timeline and scope?</action>
142
+ <action>Effort estimate: [High/Medium/Low]</action>
143
+ <action>Risk level: [High/Medium/Low]</action>
144
+ <status>[ ] Viable / [ ] Not viable</status>
145
+ </check-item>
146
+
147
+ <check-item id="4.2">
148
+ <prompt>Evaluate Option 2: Potential Rollback</prompt>
149
+ <action>Would reverting recently completed stories simplify addressing this issue?</action>
150
+ <action>Which stories would need to be rolled back?</action>
151
+ <action>Is the rollback effort justified by the simplification gained?</action>
152
+ <action>Effort estimate: [High/Medium/Low]</action>
153
+ <action>Risk level: [High/Medium/Low]</action>
154
+ <status>[ ] Viable / [ ] Not viable</status>
155
+ </check-item>
156
+
157
+ <check-item id="4.3">
158
+ <prompt>Evaluate Option 3: PRD MVP Review</prompt>
159
+ <action>Is the original PRD MVP still achievable with this issue?</action>
160
+ <action>Does MVP scope need to be reduced or redefined?</action>
161
+ <action>Do core goals need modification based on new constraints?</action>
162
+ <action>What would be deferred to post-MVP if scope is reduced?</action>
163
+ <action>Effort estimate: [High/Medium/Low]</action>
164
+ <action>Risk level: [High/Medium/Low]</action>
165
+ <status>[ ] Viable / [ ] Not viable</status>
166
+ </check-item>
167
+
168
+ <check-item id="4.4">
169
+ <prompt>Select recommended path forward</prompt>
170
+ <action>Based on analysis of all options, choose the best path</action>
171
+ <action>Provide clear rationale considering:</action>
172
+ - Implementation effort and timeline impact
173
+ - Technical risk and complexity
174
+ - Impact on team morale and momentum
175
+ - Long-term sustainability and maintainability
176
+ - Stakeholder expectations and business value
177
+ <action>Selected approach: [Option 1 / Option 2 / Option 3 / Hybrid]</action>
178
+ <action>Justification: [Document reasoning]</action>
179
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
180
+ </check-item>
181
+
182
+ </section>
183
+
184
+ <section n="5" title="Sprint Change Proposal Components">
185
+
186
+ <check-item id="5.1">
187
+ <prompt>Create identified issue summary</prompt>
188
+ <action>Write clear, concise problem statement</action>
189
+ <action>Include context about discovery and impact</action>
190
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
191
+ </check-item>
192
+
193
+ <check-item id="5.2">
194
+ <prompt>Document epic impact and artifact adjustment needs</prompt>
195
+ <action>Summarize findings from Epic Impact Assessment (Section 2)</action>
196
+ <action>Summarize findings from Artifact Conflict Analysis (Section 3)</action>
197
+ <action>Be specific about what changes are needed and why</action>
198
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
199
+ </check-item>
200
+
201
+ <check-item id="5.3">
202
+ <prompt>Present recommended path forward with rationale</prompt>
203
+ <action>Include selected approach from Section 4</action>
204
+ <action>Provide complete justification for recommendation</action>
205
+ <action>Address trade-offs and alternatives considered</action>
206
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
207
+ </check-item>
208
+
209
+ <check-item id="5.4">
210
+ <prompt>Define PRD MVP impact and high-level action plan</prompt>
211
+ <action>State clearly if MVP is affected</action>
212
+ <action>Outline major action items needed for implementation</action>
213
+ <action>Identify dependencies and sequencing</action>
214
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
215
+ </check-item>
216
+
217
+ <check-item id="5.5">
218
+ <prompt>Establish agent handoff plan</prompt>
219
+ <action>Identify which roles/agents will execute the changes:</action>
220
+ - Developer agent (for implementation)
221
+ - Product Owner / Developer (for backlog changes)
222
+ - Product Manager / Architect (for strategic changes)
223
+ <action>Define responsibilities for each role</action>
224
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
225
+ </check-item>
226
+
227
+ </section>
228
+
229
+ <section n="6" title="Final Review and Handoff">
230
+
231
+ <check-item id="6.1">
232
+ <prompt>Review checklist completion</prompt>
233
+ <action>Verify all applicable sections have been addressed</action>
234
+ <action>Confirm all [Action-needed] items have been documented</action>
235
+ <action>Ensure analysis is comprehensive and actionable</action>
236
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
237
+ </check-item>
238
+
239
+ <check-item id="6.2">
240
+ <prompt>Verify Sprint Change Proposal accuracy</prompt>
241
+ <action>Review complete proposal for consistency and clarity</action>
242
+ <action>Ensure all recommendations are well-supported by analysis</action>
243
+ <action>Check that proposal is actionable and specific</action>
244
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
245
+ </check-item>
246
+
247
+ <check-item id="6.3">
248
+ <prompt>Obtain explicit user approval</prompt>
249
+ <action>Present complete proposal to user</action>
250
+ <action>Get clear yes/no approval for proceeding</action>
251
+ <action>Document approval and any conditions</action>
252
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
253
+ </check-item>
254
+
255
+ <check-item id="6.4">
256
+ <prompt>Update sprint-status.yaml to reflect approved epic changes</prompt>
257
+ <action>If epics were added: Add new epic entries with status 'backlog'</action>
258
+ <action>If epics were removed: Remove corresponding entries</action>
259
+ <action>If epics were renumbered: Update epic IDs and story references</action>
260
+ <action>If stories were added/removed: Update story entries within affected epics</action>
261
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
262
+ </check-item>
263
+
264
+ <check-item id="6.5">
265
+ <prompt>Confirm next steps and handoff plan</prompt>
266
+ <action>Review handoff responsibilities with user</action>
267
+ <action>Ensure all stakeholders understand their roles</action>
268
+ <action>Confirm timeline and success criteria</action>
269
+ <status>[ ] Done / [ ] N/A / [ ] Action-needed</status>
270
+ </check-item>
271
+
272
+ <halt-condition>
273
+ <action if="any critical section cannot be completed">HALT: "Cannot proceed to proposal without complete impact analysis"</action>
274
+ <action if="user approval not obtained">HALT: "Must have explicit approval before implementing changes"</action>
275
+ <action if="handoff responsibilities unclear">HALT: "Must clearly define who will execute the proposed changes"</action>
276
+ </halt-condition>
277
+
278
+ </section>
279
+
280
+ </checklist>
281
+
282
+ <execution-notes>
283
+ <note>This checklist is for SIGNIFICANT changes affecting project direction</note>
284
+ <note>Work interactively with user - they make final decisions</note>
285
+ <note>Be factual, not blame-oriented when analyzing issues</note>
286
+ <note>Handle changes professionally as opportunities to improve the project</note>
287
+ <note>Maintain conversation context throughout - this is collaborative work</note>
288
+ </execution-notes>