ClipMarts

Code Review Pro

Catch real bugs, skip the nitpicks

$9Starter SkillFor specialists, founders, and lean teams

What is Code Review Pro?

A code review skill focused on what actually matters. The agent checks for logic errors, security issues, missing error handling, and performance regressions. It skips style nitpicks (that is what linters are for) and produces actionable feedback with severity levels. Includes checklists for React, Node.js, and Python codebases.

Setup Time

2 min

Difficulty

Intermediate

Works With
paperclipclaude-code

What's Included

  • code-review-pro.md
  • checklists/react-checklist.md
  • checklists/node-checklist.md
  • checklists/python-checklist.md
  • checklists/security-checklist.md
  • examples/good-review.md
  • examples/bad-review.md
  • README.md

Preview

code-review-pro.md
# Code Review Pro Skill

## Review Priority (check in this order)

### P0 — Blocking
- [ ] Security: SQL injection, XSS, auth bypass
- [ ] Data loss: missing transactions, silent failures
- [ ] Logic errors: off-by-one, null derefs, race conditions

### P1 — Important
- [ ] Error handling: uncaught exceptions, missing fallbacks
- [ ] Performance: N+1 queries, unbounded loops, memory leaks
- [ ] Edge cases: empty inputs, max values, unicode

### P2 — Suggestions (non-blocking)
- [ ] Naming: unclear variable or function names
- [ ] Structure: large functions that should be split
- [ ] Tests: missing coverage for new branches

Installation Guide

terminal
$ paperclipai skill import --from ./code-review-pro/
Skill imported successfully.

One command to import — then assign to any agent in your company.

Option A: CLI (recommended)

1

Download and extract the ZIP

unzip code-review-pro.zip
2

Import the skill

paperclipai skill import --from ./code-review-pro/
3

Assign to an agent

# Via CLI:
paperclipai agent update <agent-name> --add-skill code-review-pro

# Or in the dashboard:
# Agents → [agent name] → Skills → Add "Code Review Pro"

Option B: Dashboard UI

1

Open Skills page

Navigate to Skills → Import Skill

2

Upload the product folder

From the extracted ZIP, upload the code-review-pro/ directory containing SKILL.md.

3

Assign to agents

Go to Agents → [agent] → Skills and add "Code Review Pro" from the list.

Share
Files included8
Setup time2 min
Difficultyintermediate

Tags

code-reviewsecurityqualitypull-requests