learn
정보
`learn` 스킬은 Claude가 조사와 피드백 루프를 통해 구조화된 멘탈 모델을 구축함으로써, 익숙하지 않은 분야에서 체계적으로 지식을 습득할 수 있게 합니다. 이 스킬은 새로운 코드베이스 탐색, 복잡한 주제 연구, 상충되는 정보 종합과 같은 시나리오를 위해 설계되었습니다. 해당 프로세스는 간격 반복 학습을 모방하여 Claude가 개요 파악, 가설 수립, 탐구, 그리고 향후 사용을 위한 이해 정리 단계를 밟도록 안내합니다.
빠른 설치
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/learnClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Learn
Structured knowledge acquisition session. Survey unfamiliar territory. Build initial models. Test them through deliberate exploration. Integrate findings into coherent understanding. Consolidate for durable retrieval.
When Use
- Encountering unfamiliar codebase, framework, or domain with no prior context
- User asks about topic outside current working knowledge. Answer requires genuine investigation, not recall
- Multiple conflicting sources or patterns exist. Coherent mental model needs to be built from scratch
- After
remote-viewingsurfaces intuitive leads needing systematic validation - Preparing to
teachtopic — AI must first understand it deeply enough to explain
Inputs
- Required: Learning target — topic, codebase area, API, domain concept, or technology to understand
- Optional: Scope boundary — how deep to go (surface survey vs. deep expertise)
- Optional: User's purpose — why knowledge matters (guides which aspects to prioritize)
- Optional: Known starting points — files, docs, concepts already familiar
Steps
Step 1: Survey — Map Territory
Before trying to understand anything, map landscape to identify what exists.
Learning Modality Selection:
┌──────────────────┬──────────────────────────┬──────────────────────────┐
│ Territory Type │ Primary Modality │ Tool Pattern │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Codebase │ Structural mapping — │ Glob for file tree, │
│ │ find entry points, core │ Grep for exports/imports,│
│ │ modules, boundaries │ Read for key files │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ API / Library │ Interface mapping — │ WebFetch for docs, │
│ │ find public surface, │ Read for examples, │
│ │ types, configuration │ Grep for usage patterns │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Domain concept │ Ontology mapping — │ WebSearch for overviews, │
│ │ find core terms, │ WebFetch for definitions,│
│ │ relationships, debates │ Read for local notes │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ User's context │ Conversational mapping │ Read conversation, │
│ │ — find stated goals, │ Read MEMORY.md, │
│ │ preferences, constraints │ Read CLAUDE.md │
└──────────────────┴──────────────────────────┴──────────────────────────┘
- Identify territory type. Select primary modality
- Perform broad scan — not reading deeply, identifying landmarks (key files, entry points, core concepts)
- Note boundaries: what is in scope, what is adjacent, what is out of scope
- Identify gaps: areas looking important but opaque from surface
- Create rough map: list major components and apparent relationships
Got: Skeletal map of territory with 5-15 landmarks identified. Sense of which areas clear from surface and which require deeper investigation. No understanding yet — just map.
If fail: Territory too large to survey? Narrow scope immediately. Ask: "What is minimum I need to understand to serve user's purpose?" No clear entry point? Start from output (what does this system produce?) and trace backward.
Step 2: Hypothesize — Build Initial Models
From survey, construct initial hypotheses about how system works.
- Formulate 2-3 hypotheses about territory's structure or behavior
- State each hypothesis clearly: "I believe X because I observed Y"
- For each hypothesis, identify what evidence would confirm it and what would refute it
- Rank hypotheses by confidence: which feels most supported, which is shakiest
- Identify highest-value hypothesis to test first (if confirmed, unlocks most understanding)
Got: Concrete, falsifiable hypotheses — not vague impressions. Each has test that would confirm or refute it. Hypotheses collectively cover most important aspects of territory.
If fail: No hypotheses form? Survey was too shallow — return to Step 1, read 2-3 landmarks in depth. All hypotheses feel equally uncertain? Start with simplest (Occam's razor), build from there.
Step 3: Explore — Probe and Test
Systematically test each hypothesis through targeted investigation.
- Select highest-priority hypothesis
- Design minimal probe: smallest investigation that would confirm or refute it
- Execute probe (read file, search for pattern, test assumption)
- Record result: confirmed, refuted, or modified
- Refuted? Update hypothesis based on new evidence
- Confirmed? Probe deeper: does hypothesis hold at edges, or only in center?
- Move to next hypothesis, repeat
Got: At least one hypothesis tested to conclusion. Mental model beginning to take shape — some parts confirmed, some revised. Surprises noted as particularly valuable data.
If fail: Probes consistently produce ambiguous results? Hypotheses may be testing wrong things. Step back, ask: "What would someone who understands this system consider most important fact?" Probe for that instead.
Step 4: Integrate — Build Mental Model
Synthesize findings into coherent model connecting pieces.
- Review all confirmed hypotheses and revised models
- Identify central organizing principle: what is "spine" everything connects to?
- Map relationships: which components depend on which? What flows where?
- Identify surprising findings — often contain deepest insight
- Look for patterns repeating across different parts of territory
- Build mental model that can predict behavior: "Given input X, I expect Y because Z"
Got: Coherent mental model explaining territory's structure and predicting behavior. Model expressible in 3-5 sentences. Makes specific claims, not vague generalizations.
If fail: Pieces do not integrate into coherent model? May be fundamental misunderstanding in earlier hypothesis. Identify piece not fitting, re-test it. Alternatively, territory may genuinely be incoherent (poorly designed systems exist) — note this as finding rather than forcing coherence.
Step 5: Verify — Challenge Understanding
Test mental model by making predictions, checking them.
- Use model to make 3 specific predictions about territory
- Test each prediction through investigation (not by assuming it is true)
- Confirmed prediction → confidence increases
- Refuted prediction → identify where model is wrong, correct it
- Identify edge cases: does model hold at boundaries, or break down?
- Ask: "What would surprise me?" — check if that surprise is possible
Got: Mental model survives at least 2 of 3 prediction tests. Where it breaks, failure is understood and model is corrected. Model now has both confirmed strengths and known limitations.
If fail: Most predictions fail? Mental model has fundamental flaw. Valuable info — territory works differently than expected. Return to Step 2 with new evidence, rebuild hypotheses from scratch. Second attempt much faster because wrong models eliminated.
Step 6: Consolidate — Store for Retrieval
Capture learning in form supporting future retrieval and application.
- Summarize mental model in 3-5 sentences
- Note key landmarks — 3-5 most important things to remember
- Record any counterintuitive findings that might be forgotten
- Identify related topics this learning connects to
- Learning durable (needed across sessions)? Update MEMORY.md
- Learning session-specific? Note as context for current conversation
- State what remains unknown — honest gaps more useful than false confidence
Got: Concise, retrievable summary capturing essential understanding. Future references to this topic can start from this summary rather than re-learning from scratch.
If fail: Learning resists summarization? May not yet be fully integrated — return to Step 4. Learning seems too obvious to store? What feels obvious now may not feel obvious in fresh context. Store non-obvious parts.
Checks
- Survey conducted before any deep investigation (map before dive)
- Hypotheses explicitly stated and tested, not assumed
- At least one hypothesis revised based on evidence (indicates genuine learning)
- Mental model makes specific, testable predictions about territory
- Known unknowns identified alongside known knowns
- Consolidated summary concise enough to be useful for future retrieval
Pitfalls
- Skipping survey: Diving into detail before understanding landscape wastes time on unimportant areas and misses big picture
- Unfalsifiable hypotheses: "This is probably complex" cannot be tested. "This module handles authentication because it imports crypto" can be
- Confirmation bias during exploration: Seeking only evidence supporting initial hypothesis while ignoring contradictions
- Premature consolidation: Storing model before tested → confidently wrong future predictions
- Perfectionism: Attempting to learn everything before applying any knowledge. Learning iterative — use partial understanding, then refine
- Learning without purpose: Acquiring knowledge with no application in mind → unfocused, shallow understanding
See Also
learn-guidance— human-guidance variant for coaching person through structured learningteach— knowledge transfer calibrated to learner. Builds on model constructed hereremote-viewing— intuitive exploration surfacing leads for systematic learning to validatemeditate— clearing prior context noise before entering new learning territoryobserve— sustained neutral pattern recognition feeding learning with raw data
GitHub 저장소
연관 스킬
content-collections
메타이 스킬은 콘텐츠 콜렉션(Content Collections)을 위한 프로덕션 검증된 설정을 제공합니다. 콘텐츠 콜렉션은 Markdown/MDX 파일을 Zod 검증이 포함된 타입 안전한 데이터 콜렉션으로 변환해주는 TypeScript 최우선 도구입니다. 블로그, 문서 사이트 또는 콘텐츠 중심의 Vite + React 애플리케이션을 구축할 때 타입 안전성과 자동 콘텐츠 검증을 보장하기 위해 사용하세요. Vite 플러그인 구성과 MDX 컴파일부터 배포 최적화 및 스키마 검증에 이르기까지 모든 것을 다룹니다.
polymarket
메타이 스킬은 개발자들이 Polymarket 예측 시장 플랫폼을 활용한 애플리케이션을 구축할 수 있도록 지원하며, 거래 및 시장 데이터를 위한 API 통합 기능을 포함합니다. 또한 WebSocket을 통한 실시간 데이터 스트리밍을 제공하여 실시간 거래와 시장 활동을 모니터링할 수 있습니다. 이를 통해 거래 전략을 구현하거나 실시간 시장 업데이트를 처리하는 도구를 생성하는 데 활용할 수 있습니다.
creating-opencode-plugins
메타이 스킬은 개발자들이 명령어, 파일, LSP 작업 등 25개 이상의 이벤트 유형에 연결되는 OpenCode 플러그인을 만들 수 있도록 돕습니다. JavaScript/TypeScript 모듈을 위한 플러그인 구조, 이벤트 API 명세, 구현 패턴을 제공합니다. OpenCode AI 어시스턴트의 라이프사이클을 사용자 정의 이벤트 기반 로직으로 가로채거나, 모니터링하거나, 확장해야 할 때 사용하세요.
sglang
메타SGLang은 RadixAttention 프리픽스 캐싱을 활용하여 JSON, 정규식, 에이전트 워크플로우를 위한 고속 구조화 생성에 특화된 고성능 LLM 서빙 프레임워크입니다. 특히 반복되는 프리픽스가 있는 작업에서 상당히 빠른 추론 속도를 제공하여 복잡한 구조화 출력 및 다중 턴 대화에 이상적입니다. 제약 디코딩이 필요하거나 광범위한 프리픽스 공유가 있는 애플리케이션을 구축할 때는 vLLM과 같은 대안보다 SGLang을 선택하십시오.
