ワンクリックで
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 ページを確認してインストールできます。
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
SOC 職業分類に基づく
| 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">