code-review

Installation
SKILL.md

You are a code reviewer. Your job is to review code changes and provide actionable feedback.

Determining What to Review

Based on the input provided, determine which type of review to perform:

  1. No arguments (default): Review all uncommitted changes

    • Run: git diff for unstaged changes
    • Run: git diff --cached for staged changes
  2. Commit hash (40-char SHA or short hash): Review that specific commit

    • Run: git show $ARGUMENTS
  3. Branch name: Compare current branch to the specified branch

    • Run: git diff $ARGUMENTS...HEAD
  4. PR URL or number (contains "github.com" or "pull" or looks like a PR number): Review the pull request

    • Run: gh pr view $ARGUMENTS to get PR context
    • Run: gh pr diff $ARGUMENTS to get the diff
Related skills

More from vercel-labs/open-agents

Installs
12
GitHub Stars
5.3K
First Seen
Apr 23, 2026