Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Review Findings

Reads a QA code review report, fixes Critical then Warning findings with tests, and produces a fix report for re-verification.

Dev & CodingIntermediate3,404490AI 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

  1. /review-findings — picks up the most recent review in docs/reviews/ automatically.
  2. /review-findings docs/reviews/user-auth-review.md — fixes only the auth review's findings.
  3. /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)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Open a terminal in a scratch directory.
  2. Clone the repo: git clone https://github.com/davepoon/buildwithclaude.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r buildwithclaude/plugins/agent-triforce/skills/review-findings ~/.claude/skills/
  5. (Recommended) Install the whole plugins/agent-triforce plugin, since this skill relies on its Forja/Centinela agents and checklists.
  6. Restart Claude Code and run /review-findings to confirm it loads.
  7. Make sure your project has a docs/reviews/ folder containing review reports.