一键导入
verify
Manually verify review findings one by one by running code, writing adhoc scripts, and comparing actual behavior instead of implementing blindly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manually verify review findings one by one by running code, writing adhoc scripts, and comparing actual behavior instead of implementing blindly.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Autonomously create a plan, consult Gemini and Codex for improvements, apply feedback, and implement. No user interaction - uses best judgment throughout.
Turn an idea into a concrete design through structured dialogue.
Gemini and Codex collaboratively brainstorm solutions, building on each other's ideas across rounds. Agent synthesizes the best ideas into a plan.
Claude brainstorms with an opponent LLM (Gemini or Codex) in alternating turns, building on each other's ideas. Synthesizes the best ideas into a plan.
Commit the staged changes. If there are no staged changes, stage all changes first.
Consult Gemini and Codex for high-level planning, synthesize into a detailed plan, implement, then get final review. No user interaction.
| name | verify |
| description | Manually verify review findings one by one by running code, writing adhoc scripts, and comparing actual behavior instead of implementing blindly. |
| allowed-tools | Bash, Glob, Grep, Read, Write, Edit, Agent, AskUserQuestion |
| disable-model-invocation | true |
Verify review findings from the current conversation by actually testing each one.
Arguments: $ARGUMENTS
The conversation contains review findings (e.g. from /review, /consult, or a manual code review). These are claims about bugs, behavioral differences, missing features, or other issues. Your job is to verify each finding empirically before anyone implements fixes.
$ARGUMENTS specifies a subset (e.g. "items 1-5", "critical only"), filter accordinglyMode: If $ARGUMENTS contains --parallel, verify all findings concurrently using parallel Agent calls (one agent per finding). Otherwise, go through findings one at a time, in order.
For each finding:
Read the relevant source files to understand what the finding is actually claiming.
Choose the most appropriate verification method:
/tmp/verify-*.{sh,ts,py,rs} or similarFor each finding, report:
Show the evidence (command output, code snippets, script results) that supports your verdict.
After reporting the verdict for one finding, immediately proceed to the next. Do NOT ask the user between findings — verify all of them in one pass.
After all findings are verified, present a summary table:
# Verified | # Not an Issue | # Incorrect | # Unable to Verify
List the confirmed issues and ask the user which ones they want to fix.
--parallel, launch one Agent per finding simultaneously — each agent verifies independently and returns its verdict. Collect all results before producing the summary.