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 skill is triggered — by the user, by Claude, or both
Slash command
/review:quickThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Current branch: !`git branch --show-current`
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 reviewGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.