@ikunin/sprintpilot 1.0.3 → 1.0.5
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/_Sprintpilot/Sprintpilot.md +17 -1
- package/_Sprintpilot/manifest.yaml +1 -1
- package/_Sprintpilot/modules/autopilot/config.yaml +18 -0
- package/_Sprintpilot/skills/sprint-autopilot-on/workflow.md +166 -426
- package/_Sprintpilot/skills/sprintpilot-update/workflow.md +2 -1
- package/_Sprintpilot/templates/epic-retrospective.md +24 -0
- package/_Sprintpilot/templates/sprint-report.txt +60 -0
- package/lib/commands/install.js +247 -3
- package/lib/prompts.js +22 -0
- package/lib/substitute.js +1 -1
- package/package.json +4 -1
|
@@ -25,6 +25,22 @@ When Sprintpilot or the git addon is active:
|
|
|
25
25
|
- Each story gets its own isolated worktree and branch (`story/<key>`)
|
|
26
26
|
- Commits use conventional format: `feat(<epic>): <title> (<key>)`
|
|
27
27
|
|
|
28
|
+
### Autopilot configuration
|
|
29
|
+
|
|
30
|
+
Edit `_Sprintpilot/modules/autopilot/config.yaml`:
|
|
31
|
+
|
|
32
|
+
| Setting | Default | Values | Purpose |
|
|
33
|
+
|---------|---------|--------|---------|
|
|
34
|
+
| `autopilot.session_story_limit` | `3` | integer ≥ 0 | Stories fully implemented per autopilot run before checkpoint. `0` = unlimited. |
|
|
35
|
+
| `autopilot.retrospective_mode` | `auto` | `auto` / `stop` / `skip` | How epic-end retrospectives are handled (see below). |
|
|
36
|
+
|
|
37
|
+
`retrospective_mode` options:
|
|
38
|
+
- **`auto`** *(default)* — autopilot writes a deterministic retrospective artifact from `sprint-status.yaml` + `decision-log.yaml`, then continues. Single pass, no external skill call, safe under every CLI.
|
|
39
|
+
- **`stop`** — autopilot pauses at epic completion. Run `/bmad-retrospective` interactively, then re-run `/sprint-autopilot-on` to resume. Use this when you want the full multi-persona discussion as part of your process.
|
|
40
|
+
- **`skip`** — no retrospective artifact is written. **Not recommended** — you lose the epic-level learning record.
|
|
41
|
+
|
|
42
|
+
Both settings are prompted during `sprintpilot install` (interactive mode) with existing values as defaults, so reinstalls preserve your choices.
|
|
43
|
+
|
|
28
44
|
---
|
|
29
45
|
|
|
30
46
|
## Full skill reference by lifecycle phase
|
|
@@ -59,7 +75,7 @@ See **Mandatory sequence per story** section below.
|
|
|
59
75
|
|
|
60
76
|
| Skill | When to use |
|
|
61
77
|
|-------|-------------|
|
|
62
|
-
| `bmad-retrospective` | Run after all stories in an epic are `done`; saves lessons, marks epic `done` |
|
|
78
|
+
| `bmad-retrospective` | Run after all stories in an epic are `done`; saves lessons, marks epic `done`. Under autopilot this is driven by `autopilot.retrospective_mode` (`auto` inline, `stop` to pause for interactive use, or `skip`). |
|
|
63
79
|
|
|
64
80
|
---
|
|
65
81
|
|
|
@@ -18,3 +18,21 @@ autopilot:
|
|
|
18
18
|
#
|
|
19
19
|
# Set 0 to disable the limit and run until the sprint is complete.
|
|
20
20
|
session_story_limit: 3
|
|
21
|
+
|
|
22
|
+
# Retrospective handling at epic completion.
|
|
23
|
+
#
|
|
24
|
+
# - "auto" (default): autopilot generates a deterministic retrospective
|
|
25
|
+
# from sprint-status.yaml + decision-log.yaml, then continues with the
|
|
26
|
+
# next epic. Safe under every CLI including Gemini CLI — no external
|
|
27
|
+
# skill call, no persona simulation, single pass.
|
|
28
|
+
# - "stop": autopilot pauses at epic completion so you can run
|
|
29
|
+
# /bmad-retrospective interactively. Re-run /sprint-autopilot-on to
|
|
30
|
+
# resume with the next epic.
|
|
31
|
+
# - "skip": autopilot skips the retrospective entirely and continues.
|
|
32
|
+
# NOT RECOMMENDED — you lose the epic-level learning record.
|
|
33
|
+
#
|
|
34
|
+
# Background: the external bmad-retrospective skill can enter a
|
|
35
|
+
# multi-persona discussion loop when driven by autopilot on some CLIs,
|
|
36
|
+
# which exhausts the token/memory budget. That's why "auto" generates
|
|
37
|
+
# the artifact inline instead of invoking the external skill.
|
|
38
|
+
retrospective_mode: auto
|