| name | status |
| description | Display project status dashboard — Linear issues, current branch, CI status |
| user-invocable | true |
| allowed-tools | Bash(git *) Bash(gh *) Bash(python3 scripts/*) |
Project Status
Display a dashboard of the current project state.
Steps
-
Linear issues:
python3 scripts/linear_client.py list
Show all issues grouped by state.
-
Current branch:
git branch --show-current
-
Recent commits:
git log --oneline -5
-
Last CI run:
gh run list --limit 1
-
Format as dashboard:
┌──────────────────────────────┐
│ PROJECT STATUS │
├──────────────────────────────┤
│ Branch: feat/DEMO-1-... │
│ │
│ Issues: │
│ DEMO-1 In Progress ... │
│ DEMO-2 To Do ... │
│ DEMO-3 To Do ... │
│ │
│ CI: Last run passed (2m ago) │
└──────────────────────────────┘
If an issue ID is provided (/status DEMO-1)
Show detailed info for that specific issue:
python3 scripts/linear_client.py get $0
Include: state, description, acceptance criteria, linked PRs.