status
Display project status dashboard — Linear issues, current branch, CI status
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Display project status dashboard — Linear issues, current branch, CI status
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.