feature-status
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 DASHBOARD.md into a clear dashboard view.
What this skill does
# Status Dashboard
Provide a quick overview of project status and backlog.
## When to Use
Invoke this skill when the user asks:
- "What's in progress?"
- "What's the status?"
- "What should I work on next?"
- "Show me the backlog"
- "What have we completed recently?"
## Arguments
`$ARGUMENTS` can be:
- Empty — show full dashboard (active sections only)
- `cat:<category>` — filter all tables to that category (case-insensitive)
- `state:<state>` — filter to features with that state (e.g., `state:paused`)
- `assignee:<name>` — filter to features owned by that name
- `--archive` — include replaced and abandoned features
- A feature ID — show details for that specific feature
Filters can stack: `state:active assignee:court` shows court's active features.
For filter combinations beyond what the dashboard table supports, fall back to invoking `/feature-search` with equivalent flags.
## Instructions
### Step 1: Load Dashboard
Scan the feature directories to generate a live dashboard:
```bash
python3 ${CLAUDE_PLUGIN_ROOT}/skills/shared/lib/run_dashboard.py <project_root> --stdout
```
If the script fails or `docs/features/` doesn't exist: "No backlog found. Use `/feature-capture` to start tracking."
### Step 1.5: Apply Filters
Parse `$ARGUMENTS` for filter tokens before rendering:
- `cat:<value>` — keep only rows whose Category column matches (case-insensitive). Display header: **"Filtered by category: [value]"**
- `state:<value>` — keep only rows whose State/Status column matches (case-insensitive). Display header: **"Filtered by state: [value]"**
- `assignee:<value>` — keep only rows whose Assignee column matches (case-insensitive). Display header: **"Filtered by assignee: [value]"**
- `--archive` — include the Archive section (replaced/abandoned features) in the output; omit it by default
- Multiple filter tokens stack (AND logic); apply all before rendering.
### Step 2: Parse Dashboard Sections
The DASHBOARD.md may contain the following sections (render each that is present):
- **In Progress** - Features currently being worked on
- **Paused** - Features that were started but are temporarily on hold
- **Backlog** - Features waiting to start
- **Epics** - Multi-feature initiatives grouping related work
- **Completed** - Finished features
- **Archive** - Superseded or abandoned features (omit unless `--archive` flag is present)
### Step 3: Format Response
Display a scannable summary with:
1. **Summary counts** - In progress, backlog (by priority), completed
2. **In Progress** - Name, priority, when started
3. **Ready to Start** - Backlog items sorted by priority
4. **Recently Completed** - Last 3-5 items
Use tables for lists. Highlight P0 items.
For additional context on any feature, read its files:
```
docs/features/[id]/
├── idea.md # Full problem statement
├── plan.md # Implementation details (if in-progress)
└── shipped.md # Completion notes (if completed)
```
## Example
**User**: "What's the status?"
**Response**:
```
# Project Status
**Summary**: 1 in progress, 1 paused, 4 in backlog, 3 completed
## In Progress
- **Dark Mode Toggle** (P1) - Started 2024-01-18
## Paused
- **Offline Mode** (P2) - Paused 2024-01-12 (blocked: waiting on design)
## Backlog (Ready to Start)
| Priority | Name | Effort |
|----------|------|--------|
| P0 | User Authentication | Medium |
| P1 | API Rate Limiting | Small |
## Recently Completed
- Export Feature (2024-01-15)
- Search Improvements (2024-01-10)
```
## Integration Notes
This skill works with:
- `checking-backlog` skill - For deeper dives into specific items
- `/feature-plan` - Suggest for starting backlog items
- `/feature-implement` - Suggest for writing code for in-progress items
- `/feature-review-plan` - Suggest for submitting plan for external review
- `/feature-review-impl` - Suggest for submitting implementation for external review
- `/feature-ship` - Suggest for merging the PR after external reviews pass
Related in Data & Analytics
clawarr-suite
IncludedComprehensive management for self-hosted media stacks (Sonarr, Radarr, Lidarr, Readarr, Prowlarr, Bazarr, Overseerr, Plex, Tautulli, SABnzbd, Recyclarr, Unpackerr, Notifiarr, Maintainerr, Kometa, FlareSolverr). Deep library exploration, analytics, dashboard generation, content management, request handling, subtitle management, indexer control, download monitoring, quality profile sync, library cleanup automation, notification routing, collection/overlay management, and media tracker integration (Trakt, Letterboxd, Simkl).
querying-soql
IncludedSOQL query generation, optimization, and analysis with 100-point scoring. Use this skill when the user needs SOQL/SOSL authoring or optimization: natural-language-to-query generation, relationship queries, aggregates, query-plan analysis, and performance or safety improvements for Salesforce queries. TRIGGER when: user writes, optimizes, or debugs SOQL/SOSL queries, touches .soql files, or asks about relationship queries, aggregates, or query performance. DO NOT TRIGGER when: bulk data operations (use handling-sf-data), Apex DML logic (use generating-apex), or report/dashboard queries.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
habit-flow
IncludedAI-powered atomic habit tracker with natural language logging, streak tracking, smart reminders, and coaching. Use for creating habits, logging completions naturally ("I meditated today"), viewing progress, and getting personalized coaching.
app-store-optimization
IncludedApp Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklists, and tracking ranking changes.
visualizing-data
IncludedBuilds dashboards, reports, and data-driven interfaces requiring charts, graphs, or visual analytics. Provides systematic framework for selecting appropriate visualizations based on data characteristics and analytical purpose. Includes 24+ visualization types organized by purpose (trends, comparisons, distributions, relationships, flows, hierarchies, geospatial), accessibility patterns (WCAG 2.1 AA compliance), colorblind-safe palettes, and performance optimization strategies. Use when creating visualizations, choosing chart types, displaying data graphically, or designing data interfaces.