Complete workflow for conducting thorough code reviews with structured feedback
Performs thorough code reviews against project standards, checking all severity levels. Triggers when reviewing recent commits to produce structured feedback in the required template format.
/plugin marketplace add cipherstash/cipherpowers/plugin install cipherpowers@cipherpowersThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Systematic code review process ensuring correctness, security, and maintainability through practice adherence and structured feedback. Tests and checks are assumed to pass - reviewer focuses on code quality.
Before starting:
${CLAUDE_PLUGIN_ROOT}skills/requesting-code-review/SKILL.md${CLAUDE_PLUGIN_ROOT}standards/code-review.mdCore workflow:
Note: Tests and checks are assumed to pass. Focus on code quality review.
Read these before conducting review:
${CLAUDE_PLUGIN_ROOT}skills/requesting-code-review/SKILL.md - Understand requester expectations${CLAUDE_PLUGIN_ROOT}standards/code-review.md - Standards, severity levels, project commandsDetermine scope:
git log -1 --statgit log origin/main..HEADgit diff origin/main...HEADRead standards from practices:
# Standards live in practices, not in this skill
${CLAUDE_PLUGIN_ROOT}standards/code-review.md
Review ALL severity levels:
Empty sections are GOOD if you actually checked. Missing sections mean you didn't check.
Template location:
${CLAUDE_PLUGIN_ROOT}templates/code-review-template.md
1. Check Status section exists
Does your review have ## Status: [BLOCKED | APPROVED WITH NON-BLOCKING SUGGESTIONS | APPROVED]?
2. Check Next Steps section exists
Does your review have ## Next Steps?
3. Check BLOCKING section exists
Does your review have ## BLOCKING (Must Fix Before Merge)?
4. Check NON-BLOCKING section exists
Does your review have ## NON-BLOCKING (May Be Deferred)?
5. Check Checklist section exists
Does your review have ## Checklist with all 6 categories?
6. Check for prohibited custom sections
Have you added ANY sections not listed above (examples of PROHIBITED sections: Strengths, Code Quality Metrics, Assessment, Recommendations, Requirements Verification, Comparison to Previous Reviews, Reviewer Notes, Sign-Off, Review Summary, Issues with subsections, Test Results, Check Results)?
7. Save review file
All required sections present, no custom sections → Save to work directory. </EXTREMELY-IMPORTANT>
File naming: See ${CLAUDE_PLUGIN_ROOT}standards/code-review.md for .work directory location and naming convention ({YYYY-MM-DD}-review-{N}.md).
Additional context allowed: You may add supplementary details AFTER the Checklist section (verification commands run, files changed, commit hashes). But the 5 required sections above are mandatory and must appear first in the exact order shown.
NEVER skip:
Common rationalizations that violate workflow:
Note: Tests and checks are assumed to pass. Reviewers focus on code quality, not test execution.
Requestion code review:
${CLAUDE_PLUGIN_ROOT}skills/requesting-code-review/SKILL.mdWhen receiving feedback on your review:
${CLAUDE_PLUGIN_ROOT}skills/receiving-code-review/SKILL.mdSee test-scenarios.md for pressure tests validating this workflow resists rationalization.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.