- Add marketplace-lean.json (6 plugins) and marketplace-full.json (12 plugins) - Add .mcp-lean.json (gitea only) and .mcp-full.json (5 servers) - Create scripts/switch-profile.sh for easy profile switching - Update sprint-status.md with conditional skill loading - Set lean profile as default (~14k token savings) Lean profile includes: projman, git-flow, pr-review, clarity-assist, code-sentinel, doc-guardian Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
3.8 KiB
3.8 KiB
description
| description |
|---|
| 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 |