Major refactoring of projman plugin architecture: Skills Extraction (17 new files): - Extracted reusable knowledge from commands and agents into skills/ - branch-security, dependency-management, git-workflow, input-detection - issue-conventions, lessons-learned, mcp-tools-reference, planning-workflow - progress-tracking, repo-validation, review-checklist, runaway-detection - setup-workflows, sprint-approval, task-sizing, test-standards, wiki-conventions Command Consolidation (17 → 12 commands): - /setup: consolidates initial-setup, project-init, project-sync (--full/--quick/--sync) - /debug: consolidates debug-report, debug-review (report/review modes) - /test: consolidates test-check, test-gen (run/gen modes) - /sprint-status: absorbs sprint-diagram via --diagram flag Architecture Cleanup: - Remove plugin-level mcp-servers/ symlinks (6 plugins) - Remove plugin README.md files (12 files, ~2000 lines) - Update all documentation to reflect new command structure - Fix documentation drift in CONFIGURATION.md, COMMANDS-CHEATSHEET.md Commands are now thin dispatchers (~20-50 lines) that reference skills. Agents reference skills for domain knowledge instead of inline content. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
79 lines
2.5 KiB
Markdown
79 lines
2.5 KiB
Markdown
---
|
|
description: Check current sprint progress, identify blockers, optionally generate dependency diagram
|
|
---
|
|
|
|
# Sprint Status
|
|
|
|
## Skills Required
|
|
|
|
- skills/mcp-tools-reference.md
|
|
- skills/progress-tracking.md
|
|
- skills/dependency-management.md
|
|
|
|
## Purpose
|
|
|
|
Check current sprint progress, identify blockers, and show execution status. Optionally generate a visual dependency diagram.
|
|
|
|
## Invocation
|
|
|
|
```
|
|
/sprint-status # Text-based status report
|
|
/sprint-status --diagram # Include Mermaid dependency diagram
|
|
```
|
|
|
|
## Workflow
|
|
|
|
1. **Fetch Sprint Issues** - Get all issues for current milestone
|
|
2. **Calculate Progress** - Count completed vs total issues
|
|
3. **Identify Active Tasks** - Find issues with `Status/In-Progress`
|
|
4. **Identify Blockers** - Find issues with `Status/Blocked`
|
|
5. **Show Dependency Status** - Which tasks are now unblocked
|
|
6. **Parse Progress Comments** - Extract real-time status from structured comments
|
|
|
|
### If --diagram flag:
|
|
|
|
7. **Fetch Dependencies** - Use `list_issue_dependencies` for each issue
|
|
8. **Get Execution Order** - Use `get_execution_order` for batch grouping
|
|
9. **Generate Mermaid Syntax** - Create flowchart with status colors
|
|
|
|
## Output Format
|
|
|
|
See `skills/progress-tracking.md` for the progress display format.
|
|
|
|
### Diagram Format (--diagram)
|
|
|
|
```mermaid
|
|
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 |
|
|
|
|
## Visual Output
|
|
|
|
```
|
|
╔══════════════════════════════════════════════════════════════════╗
|
|
║ 📋 PROJMAN ║
|
|
║ 📊 STATUS ║
|
|
║ [Sprint Name] ║
|
|
╚══════════════════════════════════════════════════════════════════╝
|
|
```
|