hierarchical
21
总安装量
10
周安装量
#17570
全站排名
安装命令
npx skills add https://github.com/fradser/dotclaude --skill hierarchical
Agent 安装分布
claude-code
9
gemini-cli
7
opencode
7
codex
6
trae
5
Skill 文档
Hierarchical 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..HEAD - Test commands available: !
([ -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"
Requirements
- Use @tech-lead-reviewer â architectural impact assessment â to scope architectural risk before launching specialized reviews.
- Run parallel reviews with:
- @code-reviewer â logic correctness, tests, error handling.
- @security-reviewer â authentication, data protection, validation.
- @ux-reviewer â usability and accessibility (skip if purely backend/CLI).
- Consolidate findings by priority (Critical â High â Medium â Low) and confidence (High â Medium â Low).
- Offer optional implementation support and ensure commits follow Git conventions (详è§
skills/references/git-commit-conventions.md).
Your Task
IMPORTANT: You MUST use the Task tool to complete ALL tasks.
- Perform a leadership assessment with @tech-lead-reviewer â architectural impact assessment â to map risk areas and determine which specialized agents to involve.
- Launch the required specialized reviews in parallel via the Task tool, collect outcomes, and resolve conflicting feedback.
- Present a consolidated report with prioritized recommendations, ask whether the user wants fixes implemented, and if so, execute optimizations and testing before summarizing results.
Review Flow
- Technical Leadership Assessment: Evaluate architecture, technical debt, scalability, and maintainability impact.
- Parallel Specialized Reviews:
- @code-reviewer â logic correctness, tests, error handling.
- @security-reviewer â authentication, data protection, validation.
- @ux-reviewer â usability and accessibility (skip if purely backend/CLI).
- Consolidated Analysis: Merge findings, prioritize by impact/confidence, and produce actionable improvements.
- Optional Implementation: Address security, quality, or UX issues as requested, then run tests and validations.
- Final Optimization: Engage @code-simplifier â code simplification and optimization â to refactor implemented fixes, remove redundancy, and verify compliance with SOLID principles before finalizing the summary.