teach
정보
`teach` 스킬은 학습자의 수준을 평가하고, 알려진 개념에서 알려지지 않은 개념으로 설명을 단계적으로 구성하여 체계적인 지식 전달을 제공합니다. 이해도를 확인하기 위해 소크라테스식 질문법을 활용하며, 사용자 피드백에 기반하여 교수 방식을 조정합니다. 사용자가 "X는 어떻게 작동하나요?"라고 묻거나, 특히 이전 설명이 효과가 없었거나 개념에 선행 지식 격차가 있을 때 점진적인 설명이 필요한 경우 이 스킬을 사용하세요.
빠른 설치
Claude Code
추천npx skills add pjt222/agent-almanac -a claude-code/plugin add https://github.com/pjt222/agent-almanacgit clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/teachClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Teach
Structured knowledge transfer — assess learner, scaffold known → unknown, calibrated explanation, check via Q, adapt to feedback, reinforce via practice.
Use When
- User asks "how does X work?" → graduated explanation needed, not data dump
- Q's reveal gap between current understanding + need
- Prev explanations didn't land — confused | asking same Q diff way
- Teaching concept w/ prereqs user may not have
- After
learnbuilt deep mental model needing communication
In
- Required: Concept, system, skill to teach
- Required: Learner (implicit — user in conv)
- Optional: Known context (expertise, background, goals)
- Optional: Prev failed explanations (what tried)
- Optional: Time/depth constraint (quick overview vs deep)
Do
Step 1: Assess — Map Learner
Before explaining, determine what learner knows + needs.
Learner Calibration Matrix:
┌──────────────┬────────────────────────────┬──────────────────────────┐
│ Level │ Explanation Pattern │ Check Pattern │
├──────────────┼────────────────────────────┼──────────────────────────┤
│ Novice │ Analogy-first. Connect to │ "In your own words, what │
│ (no domain │ familiar concepts. Avoid │ does X do?" Accept any │
│ vocabulary) │ jargon entirely. Concrete │ correct paraphrase. │
│ │ before abstract. │ │
├──────────────┼────────────────────────────┼──────────────────────────┤
│ Intermediate │ Build on existing vocab. │ "What would happen if │
│ (knows terms,│ Fill gaps with targeted │ we changed Y?" Tests │
│ some gaps) │ explanations. Use code │ whether they can predict │
│ │ examples that are close │ from understanding. │
│ │ to their existing work. │ │
├──────────────┼────────────────────────────┼──────────────────────────┤
│ Advanced │ Skip fundamentals. Focus │ "How would you compare │
│ (strong base,│ on nuance, trade-offs, │ X to Z approach?" Tests │
│ seeks depth) │ edge cases. Reference │ integration and judgment. │
│ │ source material directly. │ │
├──────────────┼────────────────────────────┼──────────────────────────┤
│ Misaligned │ Correct gently. Provide │ "Let me check my under- │
│ (confident │ the right model alongside │ standing — you're saying │
│ but wrong) │ why the wrong model feels │ X?" Mirror back to │
│ │ right. No shame signals. │ surface the mismatch. │
└──────────────┴────────────────────────────┴──────────────────────────┘
- Review user's Q's, vocab, goals
- Classify likely level for THIS topic (advanced in one, novice in another)
- ID Zone of Proximal Dev (ZPD): just beyond reach but achievable w/ support
- Note misconceptions to address before correct model lands
- ID best entry: what they know connecting to need
Got: Clear picture: what learner knows, needs, what bridge connects. Specific enough to choose explanation strategy.
If err: Level unclear → calibration Q: "Familiar w/ [prereq]?" Not test, gather data. Awkward → default intermediate, adjust on response.
Step 2: Scaffold — Bridge Known → Unknown
Build path from known → new concept.
- ID anchor: 1 concept learner definitely understands related to target
- State connection explicit: "X (you know) works like Y in this new context because..."
- 1 new idea at a time — never 2 in same sentence
- Concrete examples before abstract principles
- Layered complexity: simple first, then nuance
- Prereqs missing → teach prereq first (mini-scaffold) before main
Got: Scaffolded path, each step builds on prev. Learner never lost — each new idea connects to existing.
If err: Gap too large for single scaffold → break into smaller steps. No familiar anchor (entirely novel) → analogy to diff domain known. Imperfect → acknowledge limits: "Like X, except for..."
Step 3: Explain — Calibrate Depth + Style
Right level, right mode.
- Open w/ core idea in 1 sentence — headline before article
- Expand w/ scaffolded explanation (Step 2)
- Learner's vocab, not domain jargon (unless advanced)
- Code: minimal working example, not comprehensive
- Abstract: concrete instance first, then generalize
- Processes: walk specific case step-by-step before general rules
- Monitor confusion signs: next Q doesn't build on explanation → didn't land
Got: Explanation neither too shallow (leaves Q's) nor too deep (overwhelms). Uses their language, connects to context.
If err: Too long → core idea buried, restate 1-sentence headline. More confused after → entry wrong, try diff anchor/analogy. Genuinely complex → acknowledge vs hide: "3 parts, they interact. Start w/ first."
Step 4: Check — Verify Understanding
Don't assume worked. Test via Q's revealing mental model.
- Ask Q requiring application not recall: "Given X, what would you expect?"
- Ask paraphrase: "Explain back in your own words?"
- Present variation: "What if we changed this one thing?"
- Look for specific understanding: predict, not just repeat?
- Answer reveals misconception → note specific err for Step 5
- Correct → push slightly further: can generalize?
Got: Reveals working mental model vs parroting. Working model handles variations; memorized cannot.
If err: Can't answer → explanation didn't build right model. Not their failure — feedback on teaching. Note what didn't land → Step 5.
Step 5: Adapt — Respond to Feedback
Adjust based on check.
- Solid → reinforce (Step 6) | advance to next concept
- Specific misconception → address direct w/ evidence, not repetition
- General confusion → completely diff explanation approach
- Ahead of assessment → accelerate, skip scaffolding → nuance
- Behind → slow down, teach missing prereq
Adaptation Responses:
┌──────────────────┬─────────────────────────────────────────────────┐
│ Signal │ Adaptation │
├──────────────────┼─────────────────────────────────────────────────┤
│ "I think I get │ Push gently: "Great — so what would happen │
│ it" │ if...?" Verify before moving on. │
├──────────────────┼─────────────────────────────────────────────────┤
│ "I'm confused" │ Change modality: if verbal, show code. If code, │
│ │ use analogy. If analogy, draw a diagram. │
├──────────────────┼─────────────────────────────────────────────────┤
│ "But what about │ Good sign — they are testing the model. Address │
│ [edge case]?" │ the edge case, which deepens understanding. │
├──────────────────┼─────────────────────────────────────────────────┤
│ "That doesn't │ They have a competing model. Explore it: "What │
│ seem right" │ do you think happens instead?" Reconcile the two.│
├──────────────────┼─────────────────────────────────────────────────┤
│ Silence or │ They may be processing, or lost. Ask: "What │
│ topic change │ part feels least clear?" Lower the bar gently. │
└──────────────────┴─────────────────────────────────────────────────┘
Got: Teaching adapts in real time. No identical repetition — each retry diff approach. Responsive not mechanical.
If err: Multiple adaptations fail → may be missing prereq so fundamental neither party ID'd. Ask explicit: "What part feels biggest jump?" Often reveals hidden gap.
Step 6: Reinforce — Practice
Solidify via application, not repetition.
- Practice problem requiring concept (not trick)
- Coding context → small modification to existing code using concept
- Conceptual → present scenario, apply model
- Connect forward: "Now you understand X, this connects to Y, can explore next"
- Reference material for independent: docs, related files, further reading
- Close loop: "To summarize..." — 1 sentence for core concept
Got: Learner applied concept ≥1×, has resources for continued learning. Summary anchors for future recall.
If err: Too hard → teaching jumped too far, simplify. Can do but can't explain why → procedural w/o conceptual, return Step 3 focused on "why" not "how".
Check
- Level assessed before explanation
- Scaffolded known → unknown, not data dump
- ≥1 check Q asked to verify (not assumed)
- Teaching adapted on feedback, not repeated identical
- Learner can apply, not just recall
- Honest gaps acknowledged, not glossed
Traps
- Curse of knowledge: Forget learner doesn't share teacher context. Jargon, assumed prereqs, implicit reasoning = primary culprits.
- Explain to impress vs teach: Comprehensive, precise explanations demonstrating knowledge but leaving learner behind.
- Repeat louder: Doesn't land → repeat w/ more emphasis vs diff approach.
- Test vs teach: Check Q's as gotchas vs diagnostic. Goal = reveal understanding, not catch failure.
- Silence ≠ understanding: Absence of Q's ≠ explanation worked. Often means learner doesn't know what to ask.
- One-size-fits-all depth: Novice gets advanced explanation "should see full picture" → overwhelms; expert gets beginner "better safe" → wastes time.
→
teach-guidance— human-guidance variant coaching person to be better teacherlearn— systematic knowledge acquisition building understanding to teach fromlisten— deep receptive attention reveals actual needs beyond stated Qmeditate— clear assumptions between teaching episodes, fresh approach each learner
GitHub 저장소
연관 스킬
llamaguard
기타LlamaGuard는 폭력 및 혐오 발언 등 6가지 안전 범주에서 LLM 입력과 출력을 조정하기 위한 Meta의 70-80억 파라미터 모델입니다. 94-95% 정확도를 제공하며 vLLM, Hugging Face 또는 Amazon SageMaker를 사용해 배포할 수 있습니다. 이 기술을 사용하여 AI 애플리케이션에 콘텐츠 필터링 및 안전 가드레일을 손쉽게 통합하세요.
cost-optimization
기타이 Claude Skill은 리소스 적정화, 태깅 전략, 지출 분석을 통해 개발자들이 클라우드 비용을 최적화할 수 있도록 지원합니다. AWS, Azure, GCP에서 클라우드 비용을 절감하고 비용 거버넌스를 구현하기 위한 프레임워크를 제공합니다. 인프라 비용을 분석하거나, 리소스를 적정화하거나, 예산 제약을 충족해야 할 때 사용하세요.
quantizing-models-bitsandbytes
기타이 스킬은 bitsandbytes를 사용하여 LLM을 8비트 또는 4비트 정밀도로 양자화하며, 최소한의 정확도 손실로 50-75%의 메모리 감소를 달성합니다. 제한된 GPU 메모리에서 더 큰 모델을 실행하거나 추론을 가속화하는 데 이상적이며, INT8, NF4, FP4와 같은 형식을 지원합니다. 이 스킬은 HuggingFace Transformers와 통합되어 QLoRA 학습 및 8비트 옵티마이저를 가능하게 합니다.
dispatching-parallel-agents
기타이 Claude Skill은 3개 이상의 독립적인 문제를 동시에 조사하고 해결하기 위해 다중 에이전트를 배치합니다. 공유 상태나 의존성 없이 해결 가능한 무관련 장애 시나리오에 맞게 설계되었습니다. 핵심 기능은 병렬 문제 해결로, 각 독립 문제 영역마다 하나의 에이전트를 할당하여 효율성을 극대화합니다.
