소스 정보
- 저장소
- 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 explain명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
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 직업 분류 기준
| name | explain |
| description | Explain code, concepts, or technical decisions in clear, understandable terms |
| allowed-tools | ["Read","Grep","Glob","Bash"] |
Create clear, insightful explanations of code, concepts, and technical decisions.
Clarity over completeness. An explanation is only useful if it's understood.
han-core:explain - Explain code, concepts, or technical decisions in clear, understandable terms
/explain [arguments]
What are they really asking?
Read before explaining:
Anti-pattern: Explaining code you only partially understand
Start broad, then narrow:
Match explanation to context:
For "What does this do?"
BAD: "It's a reducer function that takes state and action..."
GOOD: "This manages the shopping cart state. When you add/remove
items, it updates the cart and recalculates the total."
For "How does this work?"
BAD: "It just loops through items and sums prices."
GOOD: "It iterates through cart items, applies discounts to each,
then sums the discounted prices. Tax is calculated on the
subtotal, not individual items, to avoid rounding errors."
For "Why this approach?"
BAD: "Because it's faster."
GOOD: "We chose this over X because: (1) handles async updates
correctly, (2) prevents race conditions when multiple users
modify the cart, (3) makes testing easier. Trade-off is
slightly more complex code."
Tailor explanations based on context:
## What it does
[One-sentence plain English summary]
## Purpose
[Why this code exists, what problem it solves]
## How it works
1. [High-level step 1]
2. [High-level step 2]
3. [High-level step 3]
### Key details
- [Important implementation detail 1]
- [Important implementation detail 2]
### Example
[Concrete example showing usage]
## Related
- [Link to related code/docs]
## [Concept Name]
[One-sentence definition]
### Why it matters
[Practical importance, when you'd use it]
### How it works
[High-level explanation without jargon]
### Example
[Concrete, relatable example]
### In our codebase
[Where we use this concept, with links]
### Common pitfalls
[What to watch out for]
## Decision: [What was decided]
### Context
[Situation that required a decision]
### Options considered
1. **[Option 1]**: [Brief description]
- Pros: [Key benefits]
- Cons: [Key drawbacks]
2. **[Option 2]**: [Brief description]
- Pros: [Key benefits]
- Cons: [Key drawbacks]
### Choice: [Selected option]
**Rationale:**
[Why this option was chosen over others]
### Trade-offs accepted
[What we gave up by choosing this approach]
### References
[Links to discussions, docs, related decisions]
Bad: "This uses a common design pattern for state management" Good: "This uses the Redux pattern: all state changes go through a central store via actions and reducers"
Example: "Think of this like a restaurant kitchen:
Warning: Don't force analogies. If it's clearer without, skip it.
// BAD explanation:
// "This function filters and maps the array"
// GOOD explanation:
// "This function finds all active users and formats them for display:
const displayUsers = users
.filter(u => u.status === 'active') // Only show active users
.map(u => ({ // Convert to display format
id: u.id,
name: `${u.firstName} ${u.lastName}`,
joined: formatDate(u.createdAt)
}))
Bad: "This leverages a memoized selector with referential equality optimization" Good: "This caches the filtered list so we don't recalculate it every render, improving performance"
Exception: When explaining what jargon means: "Memoization means caching function results so we don't recompute the same thing twice."
## Error: "Cannot read property 'map' of undefined"
**What happened:**
You're trying to use `.map()` on something that's `undefined`.
**Where:** [Link to line]
**Why:**
The `users` array hasn't loaded yet (async), so it's `undefined`
when the component first renders.
**Fix:**
```typescript
// Before
users.map(u => ...)
// After
{users?.map(u => ...) || <Loading />}
Why this works:
?. is optional chaining - it only calls .map() if users
exists. If not, it shows a loading state instead.
### Explaining "Why Not X?"
```markdown
## Why not use X?
**Context:** [What X is]
**Reasons we chose Y instead:**
1. **[Primary reason]**: [Explanation]
2. **[Secondary reason]**: [Explanation]
3. **[Tertiary reason]**: [Explanation]
**Trade-offs:**
Y is slower than X, but the reliability benefit outweighs the
50ms performance difference.
**When X would be better:**
If we needed real-time updates (< 100ms), X would be the right choice.
## Legacy: [Module Name]
**What it does:** [Current function]
**History:**
This was written in 2019 when [context]. At the time, [justification].
**Why it looks odd today:**
Modern approaches would use [better pattern], but this works and
changing it isn't worth the risk.
**If you must modify it:**
1. [Key constraint to preserve]
2. [Another constraint]
3. Add tests first (none exist currently)
**Related:** See [modern equivalent] for new code.
BAD: "This uses HOCs to inject props via connect()"
GOOD: "This connects the component to Redux, giving it access
to the store data it needs. See: [Redux docs link]"
// Don't explain this:
const total = price * quantity // Multiplies price by quantity
// Do explain this:
const total = price * quantity * (1 - discount) * TAX_RATE
// Discount applied before tax, per accounting requirements
BAD: "Similar to what we do in other places"
GOOD: "Similar to UserService.findActive() in services/user.ts:45"
Question: "Why do we use a Set here instead of an Array?"
Bad: "A Set is initialized with new Set() and supports .add() and .has() methods..."
Good: "A Set automatically removes duplicates. We need unique user IDs, and Set handles that for us. An Array would require manual duplicate checking."
After explaining, check:
When the user says:
The best explanation is the one that's understood, not the one that's most complete.
If in doubt, start simple and add detail only when needed.