Display task status summary from tasks/INDEX.md
Displays task status summary from tasks/INDEX.md files in a formatted table.
/plugin marketplace add cyotee/cyotee-claude-plugin-backlog/plugin install backlog@cyoteeDisplay a summary table of all tasks from the tasks/ directory structure.
Dynamically discover all task directories in the repository:
# Find all tasks/ directories (excluding node_modules, archive, template dirs)
find . -type d -name "tasks" -not -path "*/node_modules/*" -not -path "*/archive/*" 2>/dev/null
For each tasks/ directory found:
tasks/INDEX.md to get layer name and prefixRead the INDEX.md file from the appropriate tasks directory.
If INDEX.md doesn't exist but task directories do, generate status by scanning:
tasks/[PREFIX]-N/PRD.md frontmatter for status# Backlog Status - [LAYER_NAME]
| # | Title | Status | Worktree | Dependencies | Created |
|---|-------|--------|----------|--------------|---------|
| [P]-1 | Feature Name | ✅ complete | `feature/name` | - | 2026-01-05 |
| [P]-2 | Another Feature | 🚀 in_progress | `feature/other` | [P]-1 | 2026-01-08 |
| [P]-3 | Pending Feature | 🆕 pending | `feature/pending` | [P]-2 | 2026-01-10 |
## Summary
- ✅ Complete: 1
- 🚀 In Progress: 1
- 📋 Review: 0
- 🆕 Pending: 1
- ❌ Blocked: 0
## Ready for Work
Tasks with no unmet dependencies:
- [P]-3: Pending Feature (depends on [P]-2, which is in progress)
## Recommended Next
Start with: [P]-3 (after [P]-2 completes)
If user requests full ecosystem status, scan all discovered task directories:
# Full Ecosystem Status
## [Layer1] (path/to/tasks/)
| # | Title | Status |
...
## [Layer2] (lib/submodule/tasks/)
| # | Title | Status |
...
## [Layer3] (tasks/)
| # | Title | Status |
...
/design:init