From review
Streamlines code review for rapid assessment and targeted feedback. This skill should be used when the user asks for a "quick review", "triage PR", or when evaluating small, simple changes that may not require deep architectural analysis.
How this command is triggered — by the user, by Claude, or both
Slash command
/review:SKILL files-or-directoriesquick/This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Quick Code Review ## Context - Current branch: !`git branch --show-current` - Git status: !`git status --porcelain` - Base branch: !`(git show-branch | grep '*' | grep -v "$(git rev-parse --abbrev-ref HEAD)" | head -1 | sed 's/.*\[\([^]]*\)\].*/\1/' | sed 's/\^.*//' 2>/dev/null) || echo "develop"` - Changes since base: !`BASE=$(git merge-base HEAD develop 2>/dev/null || git merge-base HEAD main 2>/dev/null) && git log --oneline $BASE..HEAD` - Files changed since base: !`BASE=$(git merge-base HEAD develop 2>/dev/null || git merge-base HEAD main 2>/dev/null) && git diff --name-only $BASE....
git branch --show-currentgit status --porcelain(git show-branch | grep '*' | grep -v "$(git rev-parse --abbrev-ref HEAD)" | head -1 | sed 's/.*\[\([^]]*\)\].*/\1/' | sed 's/\^.*//' 2>/dev/null) || echo "develop"BASE=$(git merge-base HEAD develop 2>/dev/null || git merge-base HEAD main 2>/dev/null) && git log --oneline $BASE..HEADBASE=$(git merge-base HEAD develop 2>/dev/null || git merge-base HEAD main 2>/dev/null) && git diff --name-only $BASE..HEAD([ -f package.json ] && echo "npm/pnpm/yarn test") || ([ -f Cargo.toml ] && echo "cargo test") || ([ -f pyproject.toml ] && echo "pytest/uv run pytest") || ([ -f go.mod ] && echo "go test") || echo "no standard test framework detected"Goal: Identify what to review based on current state.
Actions:
git diff$ARGUMENTS specifies files/directories, review thoseAskUserQuestion tool to ask user to specify files/directories to reviewGoal: Scope the review and determine which specialized agents are required.
Actions:
subagent_type="Explore" with thoroughness: "quick"Goal: Gather targeted feedback from relevant specialized reviewers.
Actions:
Goal: Present findings and optionally implement fixes.
Actions:
${CLAUDE_PLUGIN_ROOT}/skills/references/git-commit-conventions.md).IMPORTANT: You MUST use the Task tool to complete ALL tasks.
npx claudepluginhub rootial/dotclaude --plugin review/SKILLEnables work verification for a task. Claude completes the work, verifies it, and appends a verified tag before session exit.
/SKILLResolves a GitHub issue by creating an isolated worktree, implementing a TDD fix, and opening a PR with auto-closing keywords.
/SKILLSurfaces the current session task from a state file and evaluates its clarity and completeness. Reports completion status or identifies remaining steps.