소스 정보
- 저장소
- TheBushidoCollective/han
- 최근 소스 활동
- 2026년 2월 11일 17:40
- 감지된 SKILL.md 언어
- 영어
- 스타
- 189
- 포크
- 20
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/TheBushidoCollective/han --skill review명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Review current branch changes against REVIEW.md guidelines
Use when kotlin coroutines for structured concurrency including suspend functions, coroutine builders, Flow, channels, and patterns for building efficient asynchronous code with cancellation and exception handling.
Use when building modular Angular applications requiring dependency injection with providers, injectors, and services.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | review |
| user-invocable | false |
| description | Multi-agent code review with confidence-based filtering |
han-core:review - Multi-agent code review with confidence-based filtering
/review [arguments]
Multi-agent code review with confidence-based filtering
Automated multi-agent code review with confidence-based filtering. Runs parallel specialized review agents to identify high-confidence issues across quality, security, and discipline-specific concerns.
This command orchestrates multiple review agents in parallel to provide comprehensive code review:
Key Features:
Gathers context about the changes:
# Review scope of changes
git diff --stat main...HEAD
# Get full diff
git diff main...HEAD
# Check recent commits
git log main...HEAD --oneline
Launches multiple independent agents in parallel (single message, multiple Task calls):
han-core:code-reviewer skillsecurity:security-engineerAuto-detection based on changed files:
| File Pattern | Agent | Focus |
|---|---|---|
*.tsx, *.jsx, *.css | frontend:presentation-engineer | UI/UX, accessibility, responsiveness |
**/api/**, **/controllers/** | backend:backend-architect | API design, scalability, error handling |
**/db/**, **/*schema* | databases:database-designer | Query optimization, migrations, indexes |
**/test/**, **/*.test.* | quality:test-architect | Test quality, coverage, patterns |
**/infra/**, *.tf | infrastructure:devops-engineer | Infrastructure, deployment, configuration |
Manual override: Specify agent explicitly if auto-detection is incorrect.
Merges findings from all agents:
Presents consolidated findings:
## Review Summary
Total files changed: X
Lines added: +X, removed: -X
Review agents: 3 (Core, Security, Frontend)
---
## Findings
### 🔴 Critical Issues (Must Fix)
**[Issue]** - `file.ts:42` - **Confidence: 95%**
- Problem: ...
- Impact: ...
- Fix: ...
### 🟡 Important Issues (Should Fix)
**[Issue]** - `file.ts:89` - **Confidence: 85%**
- Problem: ...
- Impact: ...
- Suggestion: ...
---
## Verification Status
- [ ] All automated checks passed
- [ ] Security review: 1 critical issue
- [ ] Quality review: 0 issues
- [ ] Frontend review: 2 important issues
---
## Decision: REQUEST CHANGES
Critical issues must be resolved before approval.
---
## Next Actions
1. Fix SQL injection vulnerability at `services/user.ts:42`
2. Add error handling to `components/UserForm.tsx:89`
3. Re-run /review after fixes
/review
Reviews all changes from main branch to HEAD.
/review pr 123
Uses gh CLI to fetch PR #123 and review changes.
/review --agents security,performance
Override auto-detection and run only specified agents.
/review src/services/payment.ts
Review only specified files instead of entire diff.
All findings include confidence scores to reduce noise:
| Score | Meaning | Action |
|---|---|---|
| 100% | Absolutely certain | Always report (linter errors, type errors, failing tests) |
| 90-99% | Very high confidence | Always report (clear violations, obvious bugs) |
| 80-89% | High confidence | Report (pattern violations, missing tests) |
| <80% | Medium-low confidence | Do not report (speculative, subjective) |
Filtering rules:
Dimensions:
Red flags (never approve):
Focus areas:
Severity levels:
Each specialized agent brings domain expertise:
Frontend (presentation-engineer):
Backend (backend-architect):
Database (database-designer):
Phase 6: Review (from /feature-dev)
↓
Calls /review command
↓
Reports findings
↓
User fixes issues
↓
Re-run /review until clean
# Make changes
git add .
# Review before commit
/review
# Fix issues
# Review again
/review
# If clean, commit
/commit
# Fetch PR
gh pr checkout 123
# Review changes
/review
# Comment on PR
gh pr comment 123 --body "$(cat review-findings.md)"
For high-risk changes (auth, payments, security), run redundant reviewers:
/review --redundant
This runs:
Consensus logic: Report issue only if ≥2 reviewers agree (reduces false positives).
Include git history analysis:
/review --with-history
Adds:
Define custom agent combinations:
/review --team security-critical
Uses pre-defined team from .claude/review-teams.json:
{
"security-critical": [
"han-core:code-reviewer",
"security:security-engineer",
"security:security-engineer", // redundant
"infrastructure:devops-engineer"
]
}
{
"review": {
"confidenceThreshold": 80,
"autoSelectAgents": true,
"enableRedundancy": false,
"includeHistory": false,
"maxIssuesPerCategory": 10
}
}
Review agents check these files for project standards:
CLAUDE.md - Project-specific guidelinesCONTRIBUTING.md - Contribution standards.github/PULL_REQUEST_TEMPLATE.md - PR requirementsLikely causes:
Solutions:
--confidence-threshold 70 to see filtered issuesLikely causes:
Solutions:
Normal: Different perspectives are valuable
Resolution:
/feature-dev - Full feature development workflow (includes review)/commit - Smart commit after review passeshan-core:code-reviewer - Core review skill documentationsecurity - Security agent details