Help us improve
Share bugs, ideas, or general feedback.
From sidep-ops
Use when completing tasks, implementing major features, or before merging to verify work meets requirements. Also use when receiving code review feedback.
npx claudepluginhub atmigtnca/sidep-ops --plugin sidep-opsHow this skill is triggered — by the user, by Claude, or both
Slash command
/sidep-ops:reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dispatch code-reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context — never your session's history.
Evaluates code review feedback for technical accuracy, clarifies unclear points, verifies against codebase, and implements changes only after validation.
Dispatches superpowers:code-reviewer subagent using git SHAs to review changes after tasks, major features, or before merging.
Requests code review via subagent to catch issues before merging. Integrates with git workflows and subagent-driven development.
Share bugs, ideas, or general feedback.
Dispatch code-reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context — never your session's history.
Core principle: Review early, review often.
Mandatory:
Optional:
1. Get git SHAs:
BASE_SHA=$(git rev-parse HEAD~1) # or origin/main
HEAD_SHA=$(git rev-parse HEAD)
2. Dispatch code-reviewer subagent with:
{WHAT_WAS_IMPLEMENTED} — What you just built{PLAN_OR_REQUIREMENTS} — What it should do{BASE_SHA} — Starting commit{HEAD_SHA} — Ending commit{DESCRIPTION} — Brief summary3. Act on feedback:
Code review requires technical evaluation, not emotional performance.
Core principle: Verify before implementing. Ask before assuming. Technical correctness over social comfort.
1. READ: Complete feedback without reacting
2. UNDERSTAND: Restate requirement in own words (or ask)
3. VERIFY: Check against codebase reality
4. EVALUATE: Technically sound for THIS codebase?
5. RESPOND: Technical acknowledgment or reasoned pushback
6. IMPLEMENT: One item at a time, test each
NEVER:
INSTEAD:
Push back when:
How: Technical reasoning, specific questions, reference working tests/code.
IF any item is unclear:
STOP — do not implement anything yet
ASK for clarification on unclear items
For multi-item feedback:
✅ "Fixed. [Brief description]"
✅ "Good catch - [issue]. Fixed in [location]."
✅ [Just fix it and show in the code]
❌ "You're absolutely right!"
❌ "Thanks for catching that!"
❌ ANY gratitude expression
IF reviewer suggests "implementing properly":
grep codebase for actual usage
IF unused: "This isn't called. Remove it (YAGNI)?"
IF used: Then implement properly
See skills/review/code-reviewer-prompt.md