Phase 1b: Rename all ~94 commands across 12 plugins to /<noun> <action> sub-command pattern. Git-flow consolidated from 8→5 commands (commit variants absorbed into --push/--merge/--sync flags). Dispatch files, name: frontmatter, and cross-reference updates for all plugins. Phase 2: Design documents for 8 new plugins in docs/designs/. Phase 3: Scaffold 8 new plugins — saas-api-platform, saas-db-migrate, saas-react-platform, saas-test-pilot, data-seed, ops-release-manager, ops-deploy-pipeline, debug-mcp. Each with plugin.json, commands, agents, skills, README, and claude-md-integration. Marketplace grows from 12→20. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3.8 KiB
3.8 KiB
name, description
| name | description |
|---|---|
| sprint status | Check current sprint progress, identify blockers, optionally generate dependency diagram or token budget report |
Sprint Status
Skills Required
Always loaded:
- skills/mcp-tools-reference.md
Conditional — only load if matching flag is present:
- skills/sprint-lifecycle.md — load if displaying lifecycle state (always, but this is small)
- skills/dependency-management.md — load ONLY with
--diagramflag - skills/token-budget-report.md — load ONLY with
--tokensflag - skills/progress-tracking.md — load ONLY with
--diagramflag
Purpose
Check current sprint progress, identify blockers, and show execution status. Optionally generate a visual dependency diagram or token budget report.
Invocation
/sprint status # Text-based status report
/sprint status --diagram # Include Mermaid dependency diagram
/sprint status --tokens # Show token budget estimation report
Workflow
- Fetch Active Milestone —
get_milestonefor the open milestone - Read Lifecycle State — Parse
**Sprint State:**from milestone description - Fetch Sprint Issues —
list_issuesfiltered by milestone - Calculate Progress — Count closed vs total issues
- Identify Blockers — Find issues with
Status/Blockedlabel - Display Output — Format header + progress bar + issue table + blockers
That's it. No dependency analysis, no token estimation, no progress comment parsing unless a flag asks for it.
If --diagram flag, THEN ALSO:
- Fetch dependencies with
list_issue_dependencies - Load
skills/dependency-management.md - Load
skills/progress-tracking.md - Generate Mermaid diagram
If --tokens flag, THEN ALSO:
- Load
skills/token-budget-report.md - Generate Token Budget Report - Execute
skills/token-budget-report.mdestimation model- Phase: STATUS (read-only snapshot, not a workflow boundary)
- List MCP servers from
.mcp.jsonwith static overhead estimates - Show current session cost estimate based on skills loaded so far
- Display formatted report per the skill's Display Format section
Output Format
Default Output (no flags)
╔══════════════════════════════════════════════════════════════════╗
║ 📋 PROJMAN ║
║ 📊 STATUS ║
║ [Sprint Name] ║
╚══════════════════════════════════════════════════════════════════╝
Sprint State: [Planning|Executing|Blocked|Review|Closing]
Progress: [██████████░░░░░░░░░░] 50% (5/10 issues)
| # | Title | Status | Labels |
|---|-------|--------|--------|
| 123 | Issue title | Open | Priority/High |
| 124 | Another issue | Closed | Type/Bug |
Blockers:
- #125: Blocked issue title (Status/Blocked)
Diagram Format (--diagram)
flowchart TD
subgraph batch1["Batch 1 - No Dependencies"]
241["#241: sprint-diagram"]
242["#242: confidence threshold"]
end
classDef completed fill:#90EE90,stroke:#228B22
classDef inProgress fill:#FFD700,stroke:#DAA520
classDef open fill:#ADD8E6,stroke:#4682B4
classDef blocked fill:#FFB6C1,stroke:#CD5C5C
class 241 completed
class 242 inProgress
Status Colors
| Status | Color | Hex |
|---|---|---|
| Completed | Green | #90EE90 |
| In Progress | Yellow | #FFD700 |
| Open | Blue | #ADD8E6 |
| Blocked | Red | #FFB6C1 |