Review Findings
Reads a QA code review report, fixes Critical then Warning findings with tests, and produces a fix report for re-verification.
Dev & CodingIntermediate★ 3,404⑂ 490AI score 6/10Last updated: Aug 31, 2026
What it does
- Reads a QA review report (from
docs/reviews/) and identifies the root cause of each finding. - Plans fix order: Critical first, then Warnings, updating tests alongside each fix.
- Scans for dead code after fixes and runs the implementation-complete / pre-delivery checklists.
- Verifies every Critical is addressed and every Warning is fixed or explicitly deferred with justification.
- Produces a fix report ready to hand back to QA for re-verification.
Who it's for
- Teams with a backlog of review findings that need prioritized, no-gaps handling.
- Developers who want the review → fix → re-verify loop documented.
- Users of the agent-triforce plugin (Forja dev agent, Centinela QA agent).
Examples
/review-findings— picks up the most recent review indocs/reviews/automatically./review-findings docs/reviews/user-auth-review.md— fixes only the auth review's findings./review-findings docs/reviews/webhook-system-review.md— all Criticals fixed, Warnings deferred with justification, ready for QA re-check.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/davepoon/buildwithclaude/HEAD/plugins/agent-triforce/skills/review-findings/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the plugins/agent-triforce/skills/review-findings folder from the GitHub repo davepoon/buildwithclaude into my ~/.claude/skills/review-findings/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/davepoon/buildwithclaude.git && mkdir -p ~/.claude/skills && cp -r buildwithclaude/plugins/agent-triforce/skills/review-findings ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal in a scratch directory.
- Clone the repo:
git clone https://github.com/davepoon/buildwithclaude.git - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r buildwithclaude/plugins/agent-triforce/skills/review-findings ~/.claude/skills/ - (Recommended) Install the whole
plugins/agent-triforceplugin, since this skill relies on its Forja/Centinela agents and checklists. - Restart Claude Code and run
/review-findingsto confirm it loads. - Make sure your project has a
docs/reviews/folder containing review reports.
View source on GitHub ↗License: MIT