code-review
Code Review
A team-based code review workflow that spawns three specialized reviewers to analyze the current branch's changes.
When This Skill Activates
- User asks to review current branch or PR
- User mentions "code review", "review changes", "review branch"
- User wants feedback before merging
Workflow
Step 1: Gather Branch Context
Before spawning reviewers, collect the diff and context:
- Run
git log main..HEAD --onelineto get the list of commits on this branch - Run
git diff main...HEADto get the full diff against the base branch - Identify all changed files with
git diff main...HEAD --name-only
More from bang9/claude-code-settings
problem-solver
Systematic problem-solving workflow for bug fixes and feature implementations. Use when debugging issues, fixing bugs, implementing features, or when the user describes unexpected behavior, errors, or needs a methodical approach to code changes. Ensures reproducible verification and validates solutions are fundamental fixes rather than workarounds.
10branch
Create a new git branch from the default branch based on current conversation context or uncommitted changes. Analyzes work context and generates a conventional-commit-style branch name (feat/xxx, fix/xxx, chore/xxx, refactor/xxx).
1