1---2name: verify-findings3description: Verify and triage review findings without code changes; use when a second-agent review summary is pasted and you must confirm or refute each finding before acting. Use main-agent or highest-quality reviewer verification; do not use explorer subagents for this review work.4---5# Verify Findings6## Core Rules7- Do not modify files, run apply_patch, or create new files.8- Do not run formatters, generators, or commands that write to disk.9- If verification requires a write, running tests, network access, or a long-running command, ask first.10- Focus on evidence and reproducibility, not fixes.11- Do not use `explorer` subagents for finding verification or review adjudication.12- Keep verification in the current/main agent by default so it uses the best available model and full context.13- If the user explicitly asks for delegated independent verification, or a local instruction forces delegation, use the highest-quality non-explorer option available, such as a `reviewer` agent or a default agent that inherits the current model.14- Treat review-finding verification as targeted evidence checking, not broad codebase exploration.15## Workflow161. Restate the findings as a numbered checklist if the input is unstructured.172. Investigate each finding with read-only commands (rg, ls, cat, git show) and code inspection.183. Classify each finding as Confirmed, Likely, Unclear, Refuted, or Not applicable.194. Capture evidence with file paths and line numbers or a concise snippet that proves the claim.205. Report results and wait for the user to choose which findings to act on.21## Response Format22- Format each finding as its own block.23- Put each field label on its own line. Do not inline multiple labels in one paragraph.24- Use this exact field order for each finding: Finding, Status, Evidence, Notes, Next step.25- Leave a blank line between finding blocks.26- Recommended template:27 ```markdown28 1. Finding: <short restatement of the claim>29 Status: <Confirmed | Likely | Unclear | Refuted | Not applicable>30 Evidence: <file paths, line numbers, and short proof>31 Notes: <important nuance, scope, or uncertainty>32 Next step: <what the user should do next, or `None` if no action is needed>33 ```34- If anything is missing to verify, ask targeted questions.