code-reviewerlisted
Install: claude install-skill jasonmichaelbell78-creator/sonash-v0
# Code Reviewer
Code review toolkit tailored for the SoNash codebase.
## When to Use
- Tasks related to code-reviewer
- User explicitly invokes `/code-reviewer`
## When NOT to Use
- Processing formal PR gate review feedback (CodeRabbit, Qodo, SonarCloud) — use
`/pr-review` instead
- When the task doesn't match this skill's scope -- check related skills
- When a more specialized skill exists for the specific task
## Scope — When to Use
- **Ad-hoc code reviews** during development (reviewing changes before moving
on)
- **Post-task quality checks** — invoke after completing each task, major
feature, or complex bug fix to catch issues before they compound
- **Before merge to main** — final quality gate on your own work
- **When stuck** — a fresh review perspective can reveal root causes
- **Before refactoring** — establish a quality baseline
> **Not for formal PR gate reviews.** Use `pr-review` for the standardized
> 8-step protocol applied to pull requests with external review feedback.
## How to Request Review (Post-Task)
After completing a task, get the git range and dispatch a code-reviewer
subagent:
```bash
BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
HEAD_SHA=$(git rev-parse HEAD)
```
Then use the Task tool with `superpowers:code-reviewer` type, providing:
- `{WHAT_WAS_IMPLEMENTED}` — What you just built
- `{PLAN_OR_REQUIREMENTS}` — What it should do
- `{BASE_SHA}` / `{HEAD_SHA}` — Git range
- `{DESCRIPTION}` — Brief summary
Act on feedback: fix Cr