code-review
Code Review
Review all unmerged code in the current branch.
Step 1: Determine What to Review
First, detect the base branch: git rev-parse --verify main 2>/dev/null || git rev-parse --verify master.
Then determine the review scope:
- On a feature branch with uncommitted changes: review only the uncommitted work using
git diff HEAD - On a feature branch with a clean working tree: review all commits diverged from the base branch using
git diff <base-branch>...HEAD - On the base branch with uncommitted changes: review staged and unstaged changes using
git diff HEAD - On the base branch with no uncommitted changes: nothing to review — inform the user
Step 2: Launch the Review
Use a code-review-expert subagent (via the Task tool) to perform a thorough review. The subagent should:
More from queso/ai-team-skills
write-prd
Creates a new Product Requirements Document (PRD) with auto-numbered filenames in the project's PRD directory. Runs a mini-discovery workshop to gather context, then produces a structured PRD scaled to the feature's complexity.
13v0-setup
Fetches v0.dev designs via the Platform API and prepares them for adaptation into your project. Handles folder setup, source code retrieval, component inventory, and produces an adaptation brief. Use when integrating v0 designs.
12start-new-app
Scaffolds a new app from the context-kit template. Clones the repo, renames the project, initializes git, creates a PRD directory, and asks the user to provide a PRD.
8address-pr-feedback
Fetches PR review comments, categorizes each as Will Fix / Won't Fix / New Issue, addresses fixable feedback using TDD, commits, pushes, and posts a summary.
7