Caveman Review
Turns bloated PR feedback into one-line comments: location, problem, fix.
Dev & CodingBeginner★ 134⑂ 16AI score 9/10Last updated: Apr 20, 2026
What it does
- Compresses each review finding into a single line:
L42: 🔴 bug: problem. fix.(orfile:Lnn:for multi-file diffs). - Adds optional severity prefixes — 🔴 bug, 🟡 risk, 🔵 nit, ❓ q — so authors instantly know what's blocking.
- Strips hedging ("I noticed that…", "you might want to consider…") and restatements of the diff, while keeping exact line numbers, backticked symbol names, and a concrete fix.
- Automatically switches back to full prose for security findings, architectural disagreements, and onboarding contexts where the "why" matters.
- Fires on "review this PR", "code review", "review the diff",
/review, or/caveman-review.
Who it's for
- Senior engineers and tech leads whose reviews drown the signal in politeness.
- Open-source maintainers triaging many pull requests per day.
- Teams that want a consistent, scannable review format.
Examples
- Paste a
git diff mainand ask for a review → getsrc/api.ts:L23: 🟡 risk: no retry on 429. Wrap in withBackoff(3). - Long function →
L88-140: 🔵 nit: 50-line fn does 4 things. Extract validate/normalize/persist. - Security issue → that one finding is written as a full paragraph with rationale and reference, then the rest returns to terse mode.
- Say "normal mode" or "stop caveman-review" to revert to verbose reviewing.
· · · 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/jjmartres/opencode/HEAD/opencode/skills/caveman-review/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 opencode/skills/caveman-review folder from the GitHub repo jjmartres/opencode into my ~/.claude/skills/caveman-review/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/jjmartres/opencode.git /tmp/opencode && mkdir -p ~/.claude/skills && cp -r /tmp/opencode/opencode/skills/caveman-review ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repo into a temp folder:
git clone https://github.com/jjmartres/opencode.git /tmp/opencode - Create the skills directory if needed:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r /tmp/opencode/opencode/skills/caveman-review ~/.claude/skills/ - Verify with
ls ~/.claude/skills/caveman-review— you should seeSKILL.md. - Restart Claude Code and try "review this PR" or
/caveman-reviewon a diff.
View source on GitHub ↗License: MIT