explain
Explain code, concepts, or technical decisions in clear, understandable terms
What this skill does
# Explainer Skill
Create clear, insightful explanations of code, concepts, and technical decisions.
## Core Principle
**Clarity over completeness.** An explanation is only useful if it's understood.
## Name
han-core:explain - Explain code, concepts, or technical decisions in clear, understandable terms
## Synopsis
```
/explain [arguments]
```
## Explanation Process
### 1. Understand the Question
**What are they really asking?**
- Literal question: "What does this do?"
- Deeper question: "Why does this exist?" or "How does this work?"
- Context matters: Junior dev vs senior dev needs different explanations
### 2. Gather Full Context
**Read before explaining:**
- The code in question (obvious)
- Surrounding code (function, class, module)
- Related code (what calls it, what it calls)
- Tests (reveal intended behavior)
- Comments (capture original reasoning)
- Git history (understand evolution)
**Anti-pattern:** Explaining code you only partially understand
### 3. Structure the Explanation
**Start broad, then narrow:**
1. **One-sentence summary**: What it does in plain English
2. **Purpose**: Why it exists, what problem it solves
3. **High-level approach**: How it solves the problem (conceptually)
4. **Implementation details**: Specific code patterns, algorithms
5. **Edge cases**: Unusual scenarios handled
6. **Related concepts**: Connections to other parts of the system
### 4. Choose the Right Level
**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."
```
## Explanation Levels
Tailor explanations based on context:
- **High-level**: What it does and why it exists
- **Implementation**: How it works internally
- **Technical details**: Specific algorithms, patterns, edge cases
- **Historical**: Why this approach was chosen over alternatives
## Explanation Patterns
### Code Explanation Format
```markdown
## 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 Explanation Format
```markdown
## [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 Explanation Format
```markdown
## 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]
```
## Writing Guidelines
### Be Concrete
**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"
### Use Analogies (When Helpful)
**Example:**
"Think of this like a restaurant kitchen:
- Actions are customer orders
- Reducers are chefs preparing food
- Store is the completed order waiting area"
**Warning:** Don't force analogies. If it's clearer without, skip it.
### Show, Don't Just Tell
```typescript
// 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)
}))
```
### Avoid Jargon (Unless Explaining Jargon)
**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."
## Common Explanation Scenarios
### Explaining Error Messages
```markdown
## 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.
```
### Explaining Legacy Code
```markdown
## 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.
```
## Output Format
- Start with a brief summary
- Break complex explanations into sections
- Use code examples to illustrate points
- Link to relevant documentation
- Avoid jargon unless explaining jargon
## Anti-Patterns
### Assuming Knowledge
```
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]"
```
### Over-explaining Obvious Code
```typescript
// 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
```
### Vague References
```
BAD: "Similar to what we do in other places"
GOOD: "Similar to UserService.findActive() in services/user.ts:45"
```
### Explaining *How* When Asked *Why*
**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. AnRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.