Display project status and backlog overview. Use when user asks about current status, what's in progress, what to work on next, or wants a summary of the backlog. Read-only skill that formats backlog.json into a clear dashboard view.
Displays project status and backlog overview from backlog.json. Use when users ask about current progress, what's in progress, or what to work on next. Formats items by priority and shows recent completions.
/plugin marketplace add schuettc/claude-code-plugins/plugin install feature-workflow@schuettc-claude-code-pluginsThis skill is limited to using the following tools:
Provide a quick overview of project status and backlog.
Invoke this skill when the user asks:
Read: docs/planning/backlog.json
If file doesn't exist:
No backlog found. Use /feature-capture to start tracking features.
Extract from the JSON:
summary object for quick countsitems array for detailsGroup items by status:
in-progress: Currently being worked onbacklog: Waiting to be startedcompleted: Recently finishedFor in-progress items:
startedAtFor backlog items:
createdAtFor completed items:
# Project Status
## Summary
- **In Progress**: [count]
- **Backlog**: [count] (P0: [n], P1: [n], P2: [n])
- **Completed**: [count]
---
## In Progress
[For each in-progress item:]
### [name]
- **ID**: [id]
- **Started**: [startedAt] ([X days] ago)
- **Priority**: [priority] | **Effort**: [effort]
- **Plan**: docs/planning/features/[id]/plan.md
---
## Up Next (Top Priority Backlog)
[Show top 5 by priority:]
| Priority | Name | Effort | Impact | Added |
|----------|------|--------|--------|-------|
| [P0/P1/P2] | [name] | [effort] | [impact] | [X days ago] |
[If more exist:] + [N] more items in backlog
---
## Recently Completed
[Show last 3-5:]
- **[name]** - Completed [completedAt] (took [X days])
Keep it scannable:
If user just wants a quick status:
Status: 1 in progress, 5 in backlog (2 P0), 3 completed
In Progress: Dark Mode Toggle (3 days)
Next Up: User Authentication (P0), API Rate Limiting (P0)
This skill works with:
backlog-awareness skill - For deeper dives into specific items/feature-plan - Suggest for starting backlog items/feature-ship - Suggest for finishing in-progress itemsMaster authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing APIs, or debugging security issues.