status
Display project status dashboard โ Linear issues, current branch, CI status
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Display project status dashboard โ Linear issues, current branch, CI status
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Resolve a commit blocked by gitleaks โ move the secret to .env, ask the user to populate it, and WAIT for confirmation before retrying the commit
Close a Linear issue with evidence โ runs 3 gates (tests, CI, acceptance criteria) before closing
Create a well-documented issue in Linear with objective, description, acceptance criteria, and technical notes
Start work on a Linear issue โ fetch details, create branch, move to In Progress
| 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/*) |
Display a dashboard of the current project state.
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) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
/status DEMO-1)Show detailed info for that specific issue:
python3 scripts/linear_client.py get $0
Include: state, description, acceptance criteria, linked PRs.