Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Critically assess external feedback (code reviews, AI reviewers, PR comments) and decide which suggestions to apply using adversarial verification. Use when the user asks to "evaluate findings", "assess review comments", "triage review feedback", "evaluate review output", or "filter false positives".
.claude/skills/tobihagemann-evaluate-findings/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-13 | ✗→✓ | ▲ Improved | 285% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 224% | 0% |
| case-12 | ✗→✓ | ▲ Improved | 172% | 0% |
| case-14 | ✗→✓ | ▲ Improved | 200% | 0% |
| case-15 | ✗→✓ | ▲ Improved | 211% | 0% |
Assess external feedback (code reviews, AI suggestions, PR comments) with adversarial verification. Triage findings into actionable verdicts. Do not apply fixes.
If you already assessed a finding earlier in this session and recorded a verdict of Skip or Escalate — for example when an iterating loop re-runs review and the same finding resurfaces — do not re-adjudicate it from scratch. When a loop ledger path (.turbo/loops/<slug>.md) is in context, read it and treat its recorded verdicts the same way. When the re-reported finding matches one you already judged (same location and substance) and presents no new evidence beyond what your recorded reason already accounts for, keep that verdict and reason without re-reading the code, re-verifying, or routing it to the Devil's Advocate in Step 2. Assess fresh only when the finding raises materially new evidence, or when you have not judged it before in this session.
When several findings rest on a shared premise — for example a source-of-truth choice — verify that premise once before adjudicating them individually. Findings whose premise holds proceed through normal per-finding verification; when it fails, they are all Skip, citing the refuted premise.
When a plan governs the work, re-read the decisions it records before adjudicating. Having read it earlier in the session does not count: once it falls out of context, a recorded decision is indistinguishable from no decision at all.
For each finding:
| Severity | Meaning | |----------|---------| | Critical | Drop everything. Blocking release or operations. | | High | Urgent. Should be addressed in the next cycle. | | Medium | Normal. To be fixed eventually. | | Low | Nice to have. Minor improvement. |
If the upstream reviewer already assigned a priority (P0-P3), map it: P0→Critical, P1→High, P2→Medium, P3→Low. Then re-assess based on what the actual code reveals. The upstream level is a starting point, not a binding constraint. When the re-assessed severity differs from the upstream level, note the change and the reason.
If the finding has no upstream priority, assess severity from scratch.
| Verdict | Criteria | |---------|----------| | Apply | The finding is real and in scope: clear bug, missing check, genuine improvement, style violation matching project conventions | | Skip | False positive, subjective preference, reviewer is wrong, or the change's cost wildly dwarfs its benefit | | Escalate | Needs the user's judgment: behavior might be intentional, involves product intent, requires domain knowledge the agent lacks, the finding is out of scope, or two findings present a genuine trade-off |
Also assign an internal confidence level — High, Medium, or Low — reflecting how certain you are about the verdict. Confidence is used solely to route findings to the Devil's Advocate in Step 2. It does not appear in the output.
Escalate guidance: When a finding questions whether behavior is intentional and neither docs, specs, nor code comments clarify the intent, assign Escalate. Do not autonomously accept or reject findings that hinge on product intent. If a counterpart implementation exists elsewhere, suggest checking it for consistency.
Conflict guidance: When two findings contradict each other (they suggest opposite changes to the same code), treat the conflict as input, not a reason to skip. Verify each against the code and judge each on its merits as usual. If both are defensible and the choice is a genuine trade-off, assign Escalate to both, naming the opposing options so the user can decide.
An affirmation that something is correct is not a finding and carries no evidentiary weight; agreement among reviewers, or a reviewer's authority, does not settle whether a problem exists, nor whether a remedy the reviewers converged on works. When reviewers disagree on whether something is a problem at all — including one asserting it is fine while another flags it — treat the question as unresolved and verify it against the code, without letting the affirmation substitute for verification.
A reviewer's report that it could not verify something is a claim to check, not a fact to accept. Attempt the check independently, especially when the reported inability is what justifies skipping a verification step.
Verdict guidance:
After the initial assessment, challenge uncertain findings from a different angle.
Spawn when any finding has Medium or Low confidence. Send only those findings to the sub-agent. High-confidence findings pass through unchallenged. Skip this step entirely if all findings are High confidence.
Capture git status --short, git diff HEAD | git hash-object --stdin, and git symbolic-ref --short -q HEAD before spawning.
Launch a single sub-agent (inherited model defaults). Provide the Medium/Low-confidence findings with their file locations, claims, and initial verdicts. Instruct the sub-agent to challenge each finding: try to prove it wrong, or confirm it with evidence.
Evidence standards: A refutation counts only when it rests on a defense, guarantee, or documented behavior the sub-agent located and read, or on behavior it observed by running the code; an expectation that a framework, caller, or type already handles the case returns Inconclusive and leaves the initial verdict standing. Confirmed applies to the claim the finding stands or falls on. Establishing the premise beneath that claim leaves it open: that code reads a value settles nothing about whether a test can control that value. When the sub-agent has established only the premise, it returns Inconclusive. Evidence that a test fails when its subject is changed settles only that the test pins the behavior; whether the pinned behavior is the required one stays open. Where the test was written alongside its implementation, their agreement is guaranteed by construction and carries no evidence about the requirement. A finding resting on that evidence is Confirmed only when the requirement itself has been checked against the code's production consumer, or against the governing plan; when neither is reachable, the sub-agent returns Inconclusive.
Protect the shared tree: The sub-agent's prompt must direct it to treat the shared working tree and its git index as read-only; an experiment that needs a scratch project runs in a temp directory outside the repo, or in an isolated git worktree created there and discarded afterward. HEAD stays where it is: read other refs with git show <ref>:<path> rather than git checkout or git switch. Give that worktree its own dependency install rather than reaching the shared tree's install by any route: removing a worktree deletes through symlinks, and a redirected suite writes into the shared install. When its own install is not possible, the check is left unrun and reported as such. Afterward the sub-agent verifies that git worktree list no longer shows the worktree, that git status --short is clean, that HEAD is still on the branch it started on, and that the shared tree's dependency directory still resolves (a destroyed install leaves git status clean, since it is gitignored). Damage the sub-agent cannot repair is reported with the exact repair command in place of findings.
Verify the tree: re-run all three commands when the sub-agent returns, including when it terminates early or reports incomplete results. Delete what the sub-agent created, revert what it modified or staged, and return HEAD to the captured branch, leaving everything the pre-spawn capture already showed untouched.
The sub-agent picks research tools based on claim type:
| Claim Type | Tool | |------------|------| | API deprecated/removed/changed | Documentation MCP tools or web search | | Method doesn't exist / wrong signature | Documentation MCP tools, web search fallback | | Code causes specific bug or behavior | Shell (isolated read-only test snippet) | | Best practice or ecosystem claim | Web search | | Migration or changelog lookup | Web search → web fetch |
Use whatever documentation tools are available. The specific tools vary by project setup.
Budget: max 2 research actions per finding. If the first action is conclusive, skip the second.
The sub-agent returns per finding:
Merge sub-agent results with the initial assessment:
Findings not investigated by the sub-agent keep their original verdict.
For Apply findings, document the issue and location. For Escalate findings, note what information would resolve the ambiguity. For Skip findings, document why.
Summarize the evaluated findings in a table:
| File | Issue | Source | Severity | Verdict | |------|-------|--------|----------|---------|
When Step 2 ran (any finding was investigated by the Devil's Advocate sub-agent), add an Investigated column:
| File | Issue | Source | Severity | Verdict | Investigated | |------|-------|--------|----------|---------|--------------|
Where Investigated shows:
For findings whose severity was re-assessed from the upstream level, append the change in the Severity cell (e.g., "High (was Medium)").
For disputed findings, add a callout below the table showing both perspectives. For each finding, indicate scope in the Issue column (e.g., "Pre-existing:" prefix).
Then call update_plan to mark this step completed and continue with the next step of the active workflow. The next pending skill — $resolve-findings or $apply-findings — reads the findings table directly, including Escalate verdicts, which $apply-findings surfaces to the user via request_user_input.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-13 | fail→pass | 9,127 | 6,996 | -23% | 1 | 1 | 0% | 1,170 | 4,502 | +285% | 0 | 0 | — |
case-06 | pass→pass | 9,909 | 12,744 | +29% | 1 | 1 | 0% | 1,302 | 4,120 | +216% | 0 | 0 | — |
case-07 | fail→fail | 11,220 | 5,870 | -48% | 1 | 1 | 0% | 1,813 | 3,651 | +101% | 0 | 0 | — |
case-01 | fail→fail | 23,977 | 7,569 | -68% | 1 | 1 | 0% | 1,244 | 3,606 | +190% | 0 | 0 | — |
case-02 | fail→fail | 6,612 | 4,993 | -24% | 1 | 1 | 0% | 428 | 3,538 | +727% | 0 | 0 | — |
case-03 | fail→fail | 29,492 | 6,082 | -79% | 1 | 1 | 0% | 4,321 | 3,791 | -12% | 0 | 0 | — |
case-04 | fail→fail | 14,435 | 87,456 | +506% | 1 | 1 | 0% | 1,091 | 5,101 | +368% | 0 | 0 | — |
case-05 | fail→fail | 23,240 | 5,186 | -78% | 1 | 1 | 0% | 5,104 | 3,551 | -30% | 0 | 0 | — |
case-08 | pass→pass | 8,758 | 4,229 | -52% | 1 | 1 | 0% | 1,454 | 4,051 | +179% | 0 | 0 | — |
case-09 | fail→pass | 10,497 | 11,497 | +10% | 1 | 1 | 0% | 1,654 | 5,364 | +224% | 0 | 0 | — |
case-10 | pass→pass | 16,657 | 11,194 | -33% | 1 | 1 | 0% | 1,522 | 4,295 | +182% | 0 | 0 | — |
case-11 | pass→pass | 6,907 | 15,753 | +128% | 1 | 1 | 0% | 1,042 | 5,214 | +400% | 0 | 0 | — |
case-12 | fail→pass | 13,250 | 10,928 | -18% | 1 | 1 | 0% | 1,778 | 4,842 | +172% | 0 | 0 | — |
case-14 | fail→pass | 9,177 | 6,677 | -27% | 1 | 1 | 0% | 1,485 | 4,461 | +200% | 0 | 0 | — |
case-15 | fail→pass | 9,336 | 6,207 | -34% | 1 | 1 | 0% | 1,402 | 4,359 | +211% | 0 | 0 | — |
case-16 | fail→pass | 11,433 | 3,369 | -71% | 1 | 1 | 0% | 1,789 | 3,920 | +119% | 0 | 0 | — |
case-17 | pass→fail | 10,875 | 4,436 | -59% | 1 | 1 | 0% | 1,468 | 4,117 | +180% | 0 | 0 | — |
case-18 | fail→pass | 9,626 | 2,728 | -72% | 1 | 1 | 0% | 1,408 | 3,754 | +167% | 0 | 0 | — |
case-19 | fail→pass | 12,697 | 10,061 | -21% | 1 | 1 | 0% | 1,735 | 4,926 | +184% | 0 | 0 | — |
case-20 | pass→pass | 13,254 | 5,032 | -62% | 1 | 1 | 0% | 2,195 | 4,213 | +92% | 0 | 0 | — |
case-21 | fail→pass | 13,102 | 5,965 | -54% | 1 | 1 | 0% | 2,204 | 4,216 | +91% | 0 | 0 | — |
case-22 | fail→pass | 29,496 | 8,229 | -72% | 1 | 1 | 0% | 1,094 | 4,124 | +277% | 0 | 0 | — |
case-23 | fail→pass | 14,389 | 15,622 | +9% | 1 | 1 | 0% | 2,332 | 5,621 | +141% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted, and 18 counted toward the lift figure. The other 5 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +43 percentage points is the difference between those two pass rates over the 18 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
| Model | Method | Date | Lift |
|---|---|---|---|
| gemini-3.6-flash | verified | 8/21/2026 | +18% |
Other measured skills in the registry, with their headline benchmark lift.