plugin-sprint/skills/all/SKILL.md
Execute all remaining sprints sequentially
npx skillsauth add themagictower/grimoires allInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute all remaining sprints from the sprint plan sequentially. Each sprint invokes /sprint:cycle, with inter-sprint gates to verify completion.
!cat sprint.config.yaml 2>/dev/null || echo "NO_CONFIG"
!cat $(grep 'memory_file:' sprint.config.yaml 2>/dev/null | awk '{print $2}') 2>/dev/null | head -40
!cat $(grep 'sprint_plan:' sprint.config.yaml 2>/dev/null | awk '{print $2}') 2>/dev/null | head -30
!gh issue list --state open --limit 30 2>/dev/null
$ARGUMENTS — Starting sprint number (optional). Auto-determined if omitted.
e.g. 5 → Execute Sprint 5 through the end
sprint.config.yaml required: If missing, guide to /sprint:init/sprint:plansprint.config.yamlSprint Overview:
| Sprint | Goal | Status |
|--------|------|--------|
| Sprint 1 | Foundation | Completed |
| Sprint 2 | Crawlers | Completed |
| Sprint 3 | API + Dashboard | Pending |
| Sprint 4 | Notifications | Pending |
| ... | ... | ... |
Execution target: Sprint 3 ~ Sprint {N}
Gate: "Execute Sprint {start} ~ Sprint {end} sequentially. Proceed?"
for each sprint in remaining_sprints:
1. Notify user: "Starting Sprint {N}"
2. Invoke /sprint:cycle {N} (Phase 0-7 full)
3. Verify sprint completion:
- All issues closed
- All PRs merged
- MEMORY.md updated
4. Gate: "Sprint {N} complete. Proceed to Sprint {N+1}?"
- Approved → next sprint
- Rejected → stop + report current status
After each sprint completes, verify:
On all sprints complete, output full summary:
All sprints complete!
| Sprint | Issues | PRs | Bug Fixes | Status |
|--------|--------|-----|-----------|--------|
| Sprint {N} | {done}/{total} | #{...} | {N} | Done |
| Sprint {N+1} | {done}/{total} | #{...} | {N} | Done |
| ... | ... | ... | ... | ... |
Total issues: {N} completed
Total PRs: {N} merged
Total bugs: {N} fixed
On interruption, record current state in MEMORY.md:
Resume: /sprint:all {interrupted_sprint_number} or /sprint:cycle {N} phase{M} to resume from a specific Phase.
testing
Analyze and improve test coverage
development
TDD workflow with RED-GREEN-REFACTOR cycle
tools
Initialize Grimoires for a project with auto-detection
development
Code review with design principles validation