| name | status |
| description | Show current project progress from tasks/todo.md and what to work on next |
| argument-hint | |
| user-invocable | true |
| allowed-tools | Read, Bash(git status*), Bash(git branch*), Bash(git log*) |
Show the current project status — what's done, what's in progress, and what's next.
Process
- Read
tasks/todo.md — Parse the plan and identify:
- Completed items (checked boxes)
- In-progress items
- Next unchecked items
- Any upcoming checkpoints
- Check git state — Current branch, uncommitted changes, recent commits.
- Check
tasks/lessons.md — Any recent entries relevant to current work.
Output Format
## Project Status
**Branch**: feat/current-branch
**Plan status**: X/Y steps complete
### Completed
- [list of done items]
### In Progress
- [current work]
### Up Next
- [next 2-3 items]
### Blockers
- [any blocked items or concerns]
### Recent Lessons
- [relevant entries from lessons.md, if any]
Keep it concise — this is a quick status check, not a deep analysis.