Apply Findings
Tillämpar utvärderade kodgranskningsfynd, eskalerar omfångsutvidgande eller osunda fixar
Testad · Fungerar
Vad den gör
En Claude Code skill that applies code-review findings that have already been given Apply/Skip/Escalate verdicts by the companion /evaluate-findings skill. It groups Apply findings by file, re-verifies each still holds against current code, independently checks whether a suggested fix widens accepted inputs or reverses an earlier decision, and routes anything ambiguous to the user via AskUserQuestion. Utlöses on phrases like "apply findings", "apply the fixes", "apply accepted findings", or "fix the findings".
Testrapport
Hämtade SKILL.md (HTTP 200) och bekräftade all four referenced sibling skills (evaluate-findings, note-improvement, consult-codex, consult-oracle) return 200. Byggde a representative task: validate.py with a parse_port function plus an evaluated findings table (finding #1: improve error message = Apply; finding #2: replace int(s) with int(s.strip(),0) = Apply). Baslinjen tillämpade both mechanically; following the skill body's Step 2.5 (escalate fixes that newly admit inputs beyond the named defect), the skill artifact applied only #1 and held #2. Jag körde python3 to prove the difference: baseline's int(s.strip(),0) silently parses "0x1f"->31 and "0o17"->15 and breaks valid "08", changes the skill correctly escalates instead of applying.
Testad: 2026-07-21 · Claude Code 2.x (agent harness)
Installation
git clone --depth 1 https://github.com/tobihagemann/turbo.git /tmp/apply-findings-src
mkdir -p ~/.claude/skills
cp -R /tmp/apply-findings-src/claude/skills/apply-findings ~/.claude/skills/apply-findings
# Pure-prompt orchestration skill (SKILL.md only, no scripts/deps).
# Part of the Turbo skill suite; expects findings already produced by the sibling
# /evaluate-findings skill in context. Also references (install for full loop):
# claude/skills/{evaluate-findings,note-improvement,consult-codex,consult-oracle}
# Uses Claude Code's AskUserQuestion + TaskList tools. Codex edition: codex/skills/apply-findings. Kommandon och exempelprompter
/apply-findingsTillämpar utvärderade kodgranskningsfynd, eskalerar omfångsutvidgande eller osunda fixar
Skills triggas av vanliga förfrågningar — inga kommandon att memorera. Efter installationen aktiverar prompter som dessa skillen (på engelska):
Apply the accepted findings from this reviewFix the issues flagged in the code reviewApply these review suggestions to the code