원클릭으로
status
Show a comprehensive project status dashboard: task queue, blocked items, session state, verification, and git status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Show a comprehensive project status dashboard: task queue, blocked items, session state, verification, and git status.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run all verification gates (privacy scan, git cleanliness, git pushed) and report results.
Generate a QA/UAT test plan from product specifications and task definitions, covering acceptance testing, integration flows, and exploratory testing. Unit tests are out of scope (handled by write-unit-tests skill).
Write comprehensive unit tests with proper setup, assertions, and coverage of happy paths, edge cases, and error scenarios
| name | status |
| description | Show a comprehensive project status dashboard: task queue, blocked items, session state, verification, and git status. |
Gather data from all available sources and present a structured status dashboard.
Collect the following in parallel where possible:
task_list to get all tasks with their status, priority, and assignmentstask_get_stats to get aggregate totals and the next actionable tasktodo, analysing, analysed, in-progress, done, needs-input, skippedsession_get_state to get current session info (if an active session exists)git status --short to check working tree cleanlinessgit log --oneline -5 to show recent commitsgit branch --show-current to identify the current branchpwsh .bot/hooks/verify/00-privacy-scan.ps1 — privacy/secrets scanpwsh .bot/hooks/verify/01-git-clean.ps1 — working tree cleanlinessPresent results as a structured dashboard:
## Task Queue
| Status | Count |
|--------------|-------|
| todo | N |
| analysed | N |
| in-progress | N |
| done | N |
| needs-input | N |
## Next Up
<Highest priority task in `todo` or `analysed` status — show ID, title, priority>
## Currently Active
<Any tasks in `analysing` or `in-progress` status — show ID, title, assignee>
## Blocked / Needs Input
<Tasks in `needs-input` status — show ID, title, reason>
## Session
<Active session info, or "No active session">
## Git Status
Branch: <branch>
Clean: <yes/no>
Recent commits:
<last 5 commits>
## Verification
- Privacy scan: PASS/FAIL
- Git clean: PASS/FAIL
## Suggestions
<Actionable next steps based on the current state, e.g.:
- "3 tasks are analysed and ready for implementation"
- "1 task needs input — review task T-XXXXXXXX"
- "Working tree has uncommitted changes — commit or stash before starting next task">