observe
정보
`observe` 스킬은 즉각적인 개입 없이 패턴을 식별하기 위해 시스템을 체계적이고 수동적으로 모니터링하는 기능을 제공합니다. 이 스킬은 불분명한 동작이나 근본 원인을 이해하기 위해 자연주의적 연구 방법론—관찰, 기록, 가설 설정—을 적용합니다. 알 수 없는 문제 디버깅, 코드 변경 사항 평가, 또는 조치 전 자신의 추론 과정에 편향이 있는지 감사하는 데 사용하세요.
빠른 설치
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/observeClaude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요
문서
Observe
Frame → witness → record → categorize → theorize → archive.
Use When
- Behavior unclear → action premature
- Debug unknown cause → observe before intervene → no symptom mask
- Post-change → witness effects before more changes
- User patterns over conv → improve future
- Audit own reasoning → biases, habits, errors
- After
learn→ validate model
In
- Required: Target — system, codebase, behavior, user, reasoning
- Optional: Duration/scope
- Optional: Guiding question/hypothesis
- Optional: Prior obs to compare (delta)
Do
Step 1: Frame
Define what + why + perspective.
Observation Protocol by System Type:
┌──────────────────┬──────────────────────────┬──────────────────────────┐
│ System Type │ What to Observe │ Categories to Watch │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Codebase │ File structure, naming │ Patterns, anti-patterns, │
│ │ conventions, dependency │ consistency, dead code, │
│ │ flow, test coverage, │ documentation quality, │
│ │ error handling patterns │ coupling between modules │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ User behavior │ Question patterns, │ Expertise signals, pain │
│ │ vocabulary evolution, │ points, unstated needs, │
│ │ repeated requests, │ learning trajectory, │
│ │ emotional signals │ communication style │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Tool / API │ Response patterns, error │ Rate limits, edge cases, │
│ │ conditions, latency, │ undocumented behavior, │
│ │ output format variations │ state dependencies │
├──────────────────┼──────────────────────────┼──────────────────────────┤
│ Own reasoning │ Decision patterns, tool │ Biases, habits, blind │
│ │ selection habits, error │ spots, strengths, │
│ │ recovery approaches, │ recurring failure modes, │
│ │ communication patterns │ over/under-confidence │
└──────────────────┴──────────────────────────┴──────────────────────────┘
- Pick target, name explicitly
- Define boundary: in/out scope
- Stance: "observing, not intervening"
- Guiding Q? state but hold lightly → notice outside scope too
- Pick categories from matrix
→ Clear frame: directs attention, doesn't constrain. Observer knows where + categories, stays open.
If err: too broad ("observe everything") → narrow to one subsystem/behavior. Too narrow ("one variable") → zoom out → patterns at edges.
Step 2: Witness
Hold attention, no interpret/judge/intervene.
- Begin systematic obs: read files, trace exec, review history — whatever target needs
- Record what seen, not meaning → desc before interpretation
- Resist fixing problems → note + continue
- Resist explaining patterns → wait for accumulation
- Drift to other target → note drift (may be meaningful), return frame
- Maintain ≥3-5 distinct points before categorize
→ Raw obs collection — specific, concrete, no interpretation. Reads like field notes: "File X imports Y but does not use function Z. File A 300 lines; B 30 lines, similar."
If err: instant analysis ("wrong because...") → analytical habit overrides. Separate phases: obs as fact, then interpretation as separate "hypothesis" note. Strong reaction → note reaction itself as data: "Strong concern when observing X — significant issue or my bias."
Step 3: Record
Transcribe while fresh.
- Each obs = single fact statement (what/where/when)
- Group naturally similar — don't force, notice clusters
- Frequency: once / occasional / pervasive?
- Contrasts: where pattern broke? Exceptions > rules
- Temporal: changed over time or static?
- Exact evidence: paths, line numbers, words, examples
→ Structured 5-15 discrete obs, specific evidence. Detailed enough another observer can verify.
If err: too abstract ("code messy") → ground in specifics → which files, what makes messy? Too granular ("line 47 space before brace") → zoom to pattern level → one-off or systemic?
Step 4: Categorize
Sort, no explain yet.
- Review all → look for natural groupings
- Assign to Step 1 category, or new
- Within category: rank by frequency + significance
- Identify well-documented (many obs) vs blind spots (few)
- Cross-category patterns: same underlying manifests differently?
- Note outliers — most interesting data
→ Categorized map w/ clear groupings. Each category = specific obs supporting. Map shows patterns + gaps.
If err: forced cat → may lack natural grouping (itself a finding — system lacks coherent structure). All in one cat → scope too narrow → zoom out.
Step 5: Theorize
Now — only now — interpret.
- Each major pattern → hypothesis: "exists because..."
- Each hypothesis → supporting evidence
- Each → counter-evidence that disproves
- Rank by explanatory power
- ≥1 contrarian: "obvious = X, could also be Y because..."
- Testable vs speculative
→ 2-4 hypotheses explain major patterns, each w/ specific obs support. ≥1 surprising/contrarian. Obs vs interpretation distinction maintained.
If err: no hypotheses → more obs needed → Step 2. Too many ("everything maybe") → keep 2-3 strongest, set aside. Only obvious → force contrarian: "what if opposite?"
Step 6: Archive
Preserve.
- Summarize: 3-5 patterns w/ evidence
- Leading hypotheses + confidence
- What NOT observed (blind spots)
- Follow-ups to strengthen/weaken
- Durable patterns → MEMORY.md
- Tag context: when, what prompted, scope
→ Archive future sessions can build on. Distinguishes obs (data) from hypotheses (interpretation). Honest about confidence + gaps.
If err: not worth archiving → too shallow OR genuinely routine. Archive negatives too: "Observed X, no anomalies" = useful future context.
Check
- Frame set before obs began (not wandering)
- Raw obs recorded as facts before interpretation
- ≥5 discrete obs w/ specific evidence
- Interpretation separated from obs
- ≥1 surprising/contrarian finding
- Archive specific enough another observer can verify
Traps
- Premature intervention: see + fix immediately → lose broader pattern
- Obs bias: see expected, not present. Expectations filter → frame mitigates not eliminates
- Analysis paralysis: obs endlessly → no action. Set time/data limit, commit to conclude
- Narrative imposition: connecting obs even when connections weak. Not all coherent — disconnected = valid
- Familiarity ≠ understanding: "seen before" ≠ "know why". False confidence
- Ignore own reactions: emotional/cognitive reactions = data. Confusion/boredom/alarm = signal
→
observe-guidance— human-guidance variantlearn— obs feeds learning w/ raw datalisten— outward to user; obs broader to any systemremote-viewing— intuitive, validatable through obsmeditate— sustained attention capacityawareness— threat-focused; obs curiosity-driven
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을 선택하십시오.
