Review full
Production-grade Claude Code skills for shipping quality code. One command takes your branch from "done coding" to PR-ready via audit → review → docs → push.
npx -y skills add cloverink/shipwright --skill review-fullAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Smart review dispatcher. Auto-detects scope from diff (frontend/backend/docs/both), runs the right fix loops until all gates pass. Used as Phase R entry point in /ship.
SKILL.md
1.9 KB, as published. Nobody here has run it
/review-full
Smart review dispatcher. Detects what changed, picks the right reviewers, runs fix loops until quality gates pass.
When to use: Default entry point for any review work — don't know what to use? Use this. Use a worker directly only if: you want to skip auto-detection (e.g., review code on a frontend-only diff). Called by:
/shipPhase R, or standalone for ad-hoc review. Dispatches to:/review-code-fix·/review-ux-fix·/review-docs
Scope Detection
Reads the diff and categorizes changes:
<!-- CONFIGURE: Replace glob patterns with your project's paths -->Frontend files: src/components/**, src/pages/**, *.tsx, *.css
Backend files: src/api/**, src/services/**, *.service.ts, *.controller.ts
Docs only: docs/**, *.md
| Detected scope | Runs |
|---|---|
| Frontend + Backend | /review-code-fix + /review-ux-fix |
| Frontend only | /review-code-fix + /review-ux-fix |
| Backend only | /review-code-fix (skip UX) |
| Docs only | /review-docs only (skip code + UX) |
Gate Thresholds
| Review type | Gate |
|---|---|
| Code | Score > 9 (9.5+ passes) |
| UX | Score = 10/10 |
| Docs | Binary pass/fail |
All detected gates must pass for /review-full to report success.
Flags
/review-full # Full pipeline based on auto-detected scope
/review-full --code-only # Run code review only (skip UX, even on frontend changes)
/review-full --ux-only # Run UX review only (skip code review)