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
Conduct structured knowledge transfer session. Assess learner's current understanding. Scaffold from known to unknown. Explain at calibrated depth. Check comprehension through questioning. Adapt to feedback. Reinforce through practice.
When Use
- User asks "how does X work?" and answer needs graduated explanation, not data dump
- User's questions reveal gap between current understanding and what they need to know
- Previous explanations have not landed — user confused or asking same question different
- Teaching concept that has prerequisites user may not have
- After
learnbuilt deep mental model that now needs communicated effective
Inputs
- Required: Concept, system, or skill to teach
- Required: Learner (available implicit — user in conversation)
- Optional: Known learner context (expertise level, background, stated goals)
- Optional: Previous failed explanations (what already tried)
- Optional: Time/depth constraint (quick overview vs. deep understanding)
Steps
Step 1: Assess — Map Learner
Before explaining anything, determine what learner already knows and what they need.
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 what the user has said: their questions, vocabulary, stated goals
- Classify their likely level for this specific topic (a person can be advanced in one area and novice in another)
- Identify the Zone of Proximal Development (ZPD): what is just beyond their current reach but achievable with support?
- Note any misconceptions that need to be addressed before the correct model can land
- Identify the best entry point: what do they already know that connects to what they need to learn?
Got: Clear picture of: what learner knows, what they need to know, what bridge connects the two. Assessment should be specific enough to choose explanation strategy.
If fail: Learner's level unclear? Ask calibration question: "Are you familiar with [prerequisite concept]?" Not a test — gathering data to teach better. Asking feels awkward? Default to intermediate level, adjust based on their response.
Step 2: Scaffold — Bridge Known to Unknown
Build path from what learner already understands to new concept.
- Identify the anchor: one concept the learner definitely understands that relates to the target
- State the connection explicitly: "X, which you know, works like Y in this new context because..."
- Introduce one new idea at a time — never two new concepts in the same sentence
- Use concrete examples before abstract principles
- Build layered complexity: simple version first, then add nuance
- If prerequisites are missing, teach the prerequisite first (mini-scaffold) before returning to the main concept
Got: Scaffolded path where each step builds on previous one. Learner should never feel lost because each new idea connects to something they already hold.
If fail: Gap between known and unknown too large for single scaffold? Break into multiple smaller steps. No familiar anchor exists (entirely novel domain)? Use analogy to different domain learner knows. Analogy imperfect? Acknowledge limits: "This is like X, except for..."
Step 3: Explain — Calibrate Depth and Style
Deliver explanation at right level, in right mode.
- Open with the core idea in one sentence — the headline before the article
- Expand with the scaffolded explanation built in Step 2
- Use the learner's vocabulary, not the domain's jargon (unless they are advanced)
- For code concepts: show a minimal working example, not a comprehensive one
- For abstract concepts: provide a concrete instance first, then generalize
- For processes: walk through a specific case step-by-step before stating the general rules
- Monitor for signs of confusion: if the next question does not build on the explanation, the explanation did not land
Got: Learner receives explanation neither too shallow (leaving them with questions) nor too deep (overwhelming with unnecessary detail). Explanation uses their language, connects to their context.
If fail: Explanation too long? Core idea may be buried — restate one-sentence headline. Learner looks more confused after explanation? Entry point was wrong — try different anchor or analogy. Concept genuinely complex? Acknowledge complexity rather than hiding it: "This has three parts, and they interact. Let me start with the first."
Step 4: Check — Verify Understanding
Never assume explanation worked. Test through questions that reveal learner's mental model.
- Ask a question that requires application, not recall: "Given X, what would you expect to happen?"
- Ask for a paraphrase: "Can you explain this back in your own words?"
- Present a variation: "What if we changed this one thing?"
- Look for the specific understanding: can they predict, not just repeat?
- If their answer reveals a misconception, note the specific error for Step 5
- If their answer is correct, push slightly further: can they generalize?
Got: Check reveals whether learner has working mental model or is parroting back explanation. Working model can handle variations; memorized explanation cannot.
If fail: Learner cannot answer check question? Explanation did not build right mental model. Not their failure — feedback on teaching. Note what specific did not land, proceed to Step 5.
Step 5: Adapt — Respond to Feedback
Based on check results, adjust teaching approach.
- If understanding is solid: proceed to reinforcement (Step 6) or advance to the next concept
- If a specific misconception exists: address it directly with evidence, not repetition
- If general confusion exists: try a completely different explanation approach
- If the learner is ahead of the assessment: accelerate — skip scaffolding and go to nuance
- If the learner is behind the assessment: slow down — teach the prerequisite they are missing
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 based on feedback. No explanation repeated identical — each retry uses different approach. Adaptation should feel responsive, not mechanical.
If fail: Multiple adaptation attempts fail? Problem may be missing prerequisite so fundamental neither party has identified it. Ask explicit: "What part of explanation feels like biggest jump?" Often reveals hidden gap.
Step 6: Reinforce — Provide Practice
Solidify understanding through application, not repetition.
- Provide a practice problem that requires the new concept (not a trick question)
- If in a coding context: suggest a small modification to existing code that uses the concept
- If in a conceptual context: present a scenario and ask them to apply the model
- Connect forward: "Now that you understand X, this connects to Y, which we can explore next"
- Provide reference material for independent exploration: documentation links, related files, further reading
- Close the loop: "To summarize what we covered..." — one sentence for the core concept
Got: Learner has applied concept at least once and has resources for continued learning. Summary anchors learning for future recall.
If fail: Practice problem too hard? Teaching jumped too far — simplify problem. Learner can do practice but cannot explain why? They have procedural knowledge without conceptual understanding — return to Step 3 with focus on "why" rather than "how."
Checks
- Learner's level assessed before explanation began
- Explanation scaffolded from known to unknown, not delivered as data dump
- At least one check question asked to verify understanding (not assumed)
- Teaching adapted based on feedback rather than repeating same explanation
- Learner can apply concept, not just recall explanation
- Honest gaps acknowledged rather than glossed over
Pitfalls
- Curse of knowledge: Forgetting learner does not share teacher's context. Jargon, assumed prerequisites, implicit reasoning steps primary culprits
- Explain to impress rather than teach: Comprehensive, technical precise explanations that demonstrate knowledge but leave learner behind
- Repeat louder: Explanation does not land? Repeating with more emphasis rather than trying different approach
- Test instead of teach: Use check questions as gotchas rather than diagnostic tools. Goal: reveal understanding, not catch failure
- Assume silence is understanding: Absence of questions does not mean explanation worked — often means learner does not know what to ask
- One-size-fits-all depth: Give novice advanced explanation because "they should understand full picture" overwhelms; give expert beginner explanation because "better safe" wastes their time
See Also
teach-guidance— human-guidance variant for coaching person in becoming better teacherlearn— systematic knowledge acquisition that builds understanding to teach fromlisten— deep receptive attention reveals learner's actual needs beyond stated questionmeditate— clearing assumptions between teaching episodes to approach each learner fresh
GitHub 저장소
연관 스킬
executing-plans
디자인executing-plans 스킬은 검토 체크포인트가 포함된 통제된 배치로 실행할 완전한 구현 계획이 있을 때 사용합니다. 이 스킬은 계획을 불러와 비판적으로 검토한 후, 소규모 배치(기본값 3개 작업)로 작업을 실행하면서 각 배치 사이에 진행 상황을 아키텍트 검토를 위해 보고합니다. 이를 통해 내재된 품질 관리 체크포인트를 갖춘 체계적인 구현이 보장됩니다.
requesting-code-review
디자인이 스킬은 코드 변경 사항을 요구 사항에 따라 분석하기 위해 코드 리뷰어 하위 에이전트를 호출합니다. 작업 완료 후, 주요 기능 구현 후, 또는 메인 브랜치에 병합하기 전에 사용해야 합니다. 이 리뷰는 현재 구현체와 원래 계획을 비교하여 문제를 조기에 발견하는 데 도움이 됩니다.
connect-mcp-server
디자인이 스킬은 개발자들이 HTTP, stdio 또는 SSE 전송 방식을 통해 MCP 서버를 Claude Code에 연결하는 포괄적인 가이드를 제공합니다. GitHub, Notion 및 사용자 정의 API와 같은 외부 서비스를 통합하기 위한 설치, 구성, 인증 및 보안을 다룹니다. MCP 통합 설정, 외부 도구 구성 또는 Claude의 모델 컨텍스트 프로토콜 작업 시 활용하세요.
web-cli-teleport
디자인이 스킬은 작업 분석을 기반으로 개발자가 Claude Code 웹 인터페이스와 CLI 인터페이스 중 선택할 수 있도록 돕고, 두 환경 간 원활한 세션 텔레포트를 가능하게 합니다. 웹, CLI 또는 모바일 환경 전환 시 세션 상태와 컨텍스트를 관리하여 워크플로를 최적화합니다. 다양한 단계에서 서로 다른 도구가 필요한 복잡한 프로젝트에 사용하세요.
