How this skill is triggered — by the user, by Claude, or both
Slash command
/code-quality:review-helpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
/review # Review uncommitted changes (git diff)
/review --branch # Review entire branch against main
/review help # Display this help
| Flag | Short | Description |
|---|---|---|
--branch | -b | Diff current branch against main instead of uncommitted changes |
--thorough | -t | Force subagent mode even for small diffs |
--simple | -s | Force single-pass mode even for large diffs |
--report | -r | Save findings to docs/reviews/YYYY-MM-DD-review.md |
--spec <path> | Reference a spec document for validation | |
--help | Display this help |
/review # Quick review of staged/unstaged changes
/review -b # Review full branch before PR
/review -b --thorough # Thorough multi-agent review of branch
/review --spec docs/spec.md # Review against explicit spec document
/review -br # Branch review, save report
[T1] Critical - Must address before merging
[T2] Important - Should address
[T3] Minor - Nice to have
Automatically triggered when diff exceeds ~200 lines. Spawns three specialized reviewers in parallel:
Use --thorough to force subagent mode, --simple to disable it.
npx claudepluginhub rickym-h/jadefall-marketplace --plugin code-qualityReviews code changes since a fixed point (commit, branch, tag) against coding standards and spec requirements, reporting results side by side.
Reviews current git branch changes against REVIEW.md and CLAUDE.md guidelines. Analyzes uncommitted, staged, and committed diffs for violations, bugs, security, and correctness issues.
Conducts code reviews on git diffs using two competing subagents that inspect architecture and implementation. Surfaces consensus issues plus serious solo findings like bugs or security flaws before commits.