code-review

Installation
SKILL.md

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:

  1. Run git log main..HEAD --oneline to get the list of commits on this branch
  2. Run git diff main...HEAD to get the full diff against the base branch
  3. Identify all changed files with git diff main...HEAD --name-only
Related skills
Installs
8
GitHub Stars
2
First Seen
Feb 27, 2026