Agent skill · Code Review & Quality

review-it

Code review closeout for Claude Code, Codex, OpenCode, DeepSeek TUI, and Antigravity CLI: local dirty changes, branch vs main, parallel tests.

smallnestgithub.com/smallnestGitHub ↗
claude-codecodexMIT
Install
npx skills add smallnest/goal-workflow --skill review-it --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/review-it/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 199
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# CC Review Run automated code review as a closeout check before committing or shipping. Works across multiple AI coding agents. Use when: - user asks for code review / review-it / autoreview - after non-trivial code edits, before final/commit/ship - reviewing a local branch or PR branch after fixes ## Supported Agents | Agent | Review Command | Notes | |-------|---------------|-------| | Claude Code | `/review` | Built-in, works on uncommitted changes or diff | | Codex | `codex review` | Pass diff file or let it auto-detect | | OpenCode | `/review` | Same as Claude Code | | DeepSeek TUI | `/review` or manual diff review | Pass diff content for analysis | | Antigravity CLI | `/code-review` | Built-in slash command, auto-detects diff | ## Contract - Treat review output as advisory. Never blindly apply it. - Verify every finding by reading the real code path and adjacent files. - Read dependency docs/source/types when the finding depends on external behavior. - Reject unrealistic edge cases, speculative risks, broad rewrites, and fixes that over-complicate the codebase. - Prefer small fixes at the right ownership boundary; no refactor unless it clearly improves the bug class. - Keep

What's inside
Steps it walks through
  1. Supported Agents
  2. Contract
  3. Review Focus
  4. Pick Target
  5. Claude Code / OpenCode / DeepSeek TUI
  6. Antigravity CLI (agy)
  7. Codex
  8. Parallel Closeout
  9. Uncommitted vs Branch Review
  10. Helper
  11. Final Report
Ships with 1 file
  • scripts/review-it
Commands it runs
git diff origin/main...HEAD > /tmp/review-it.diff
git diff "origin/$base"...HEAD > /tmp/review-it.diff
Review uncommitted changes
codex review
Review branch diff
codex review /tmp/review-it.diff
scripts/review-it --parallel-tests "<focused test command>"
More from goal-workflow
All skills →
About this skill
What does the review-it skill do?

Code review closeout for Claude Code, Codex, OpenCode, DeepSeek TUI, and Antigravity CLI: local dirty changes, branch vs main, parallel tests.

How do I install it?

Run `npx skills add smallnest/goal-workflow --skill review-it --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From smallnest/goal-workflow, a repository with 199 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going