一键导入
verify
Run the smallest useful checks for the current change and report exactly what passed, failed, was partial, or was blocked.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run the smallest useful checks for the current change and report exactly what passed, failed, was partial, or was blocked.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Ask which skill or flow fits your situation. A router over the skills in this repo.
Implement a piece of work based on a spec or set of tickets.
Configure this repo for the engineering skills — set up its issue tracker, triage label vocabulary, and domain doc layout. Run once before first use of the other engineering skills.
Turn the current conversation into a spec and publish it to the project issue tracker — no interview, just synthesis of what you've already discussed.
Break a plan, spec, or the current conversation into a set of tracer-bullet tickets, each declaring its blocking edges, published to the configured tracker — edges as text in one file per ticket locally, or native blocking links on a real tracker.
Plan a huge chunk of work — more than one agent session can hold — as a shared map of investigation tickets on your issue tracker, and resolve them one at a time until the way to the destination is clear.
| name | verify |
| description | Run the smallest useful checks for the current change and report exactly what passed, failed, was partial, or was blocked. |
Purpose: answer what checks actually passed. Never claim verified unless commands ran and passed.
Look for obvious build/test config before choosing commands:
package.jsonpyproject.tomlCargo.tomlgo.modRun via Bash:
git status --shortgit diff --statgit diff --cached --stat when staged changes existPrefer, in order:
Use package scripts and project conventions when available. If the user provides a command, prefer it unless unsafe.
Run the chosen commands via Bash. Capture enough output to prove pass/fail without dumping noise.
If no verification command is available, report blocked.
## Verification result
Status: pass | fail | partial | blocked
## Commands run
- `<command>` — pass/fail
## Evidence
<short summary of relevant output>
## Remaining risk
<what was not checked>
## Recommended next step
<none | /zoo-review | /zoo-tweak | /zoo-tdd | /zoo-fix | /zoo-commit-and-document>
Hard rule: never say verified, all good, or tests pass unless commands actually ran and passed.
If no checks are available, use:
Status: blocked
Reason: no verification command found
Do not auto-launch any follow-up command.
Write the full verification report to .scratch/zoo-verify/<date>/zoo-verify-<slug>.md via Write.
COMPLETION PROTOCOL: Your final text message is your return value. Output this summary, then STOP — do not call any more tools.
Before broad reads, locate relevant files/symbols with Glob, Grep, or targeted file reads.
Prefer targeted Read with line ranges or block reads once the relevant area is known.
Read full files only when structure, ordering, or surrounding context is required for correctness.
Do not re-read unchanged files; use prior findings unless the file changed.
Use git status --short, git diff --stat, and targeted git diff -- <file> rather than dumping the full repo diff at once.