From review
Performs comprehensive project-level review using specialized subagents. This skill should be used when the user asks for a "full review", "project review", "comprehensive audit", or when analyzing entire codebases for quality, security, and architecture.
How this skill is triggered — by the user, by Claude, or both
Slash command
/review:hierarchicalThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
- Project root: !`pwd`
pwdfind . -type f -name "*.py" -o -name "*.ts" -o -name "*.js" -o -name "*.go" -o -name "*.rs" -o -name "*.java" -o -name "*.swift" 2>/dev/null | head -50([ -f package.json ] && echo "Node.js") || ([ -f Cargo.toml ] && echo "Rust") || ([ -f pyproject.toml ] && echo "Python") || ([ -f go.mod ] && echo "Go") || ([ -f pom.xml ] && echo "Java") || ([ -f Package.swift ] && echo "Swift") || echo "Unknown"([ -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"find . -type f \( -name "*.py" -o -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" -o -name "*.go" -o -name "*.rs" -o -name "*.java" -o -name "*.swift" \) 2>/dev/null | wc -l | tr -d ' 'Goal: Identify the project directory to review.
Actions:
$ARGUMENTS specifies a directory, review that directory recursively.)Goal: Map project architecture, identify risk areas, and determine review focus.
Actions:
subagent_type="Explore" with thoroughness: "very thorough"Goal: Collect comprehensive feedback from all relevant specialized reviewers.
Actions:
Goal: Merge findings and produce prioritized actionable improvements.
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.