← スキル一覧に戻る

context
by junyjeon
⭐ 1🍴 0📅 2026年1月19日
SKILL.md
name: context description: 다층 컨텍스트 수집과 의존성 주입
/context
기능의 비즈니스/설계/구현 정보를 수집하고, 의존 기능 컨텍스트를 주입한다.
명령어
/context add {feature} 새 기능 노드 생성
/context update 현재 기능 노드 업데이트
/context inject {feature} 특정 기능 컨텍스트 주입
/context show {feature} 기능 노드 내용 표시
/context add {feature}
새 기능 노드를 생성한다.
수집 정보
-
Business Layer
- problem: 해결하려는 문제
- solution: 해결 방법
- acceptance: 완료 조건들
-
Dependencies
- depends_on: 의존하는 기능들
실행
# 템플릿 복사
cp ~/.claude/feature-map/nodes/_template.json ~/.claude/feature-map/nodes/{feature}.json
# graph.json에 노드 추가
# edges에 의존성 추가
출력
Feature: {feature}
├── Business: {problem 요약}
├── Acceptance: {n} criteria
├── Depends: {dependencies}
└── Status: created
Node saved: ~/.claude/feature-map/nodes/{feature}.json
/context update
현재 작업 중인 기능의 노드를 업데이트한다.
자동 감지 키워드
| 키워드 | 수집 대상 |
|---|---|
| decided, chose, selected | Decision.what |
| because, since, for | Decision.why |
| alternative, instead, option | Decision.alternatives |
| should, must, need to | Acceptance criteria |
| depends on, requires, needs | Dependencies |
출력
Decision captured: {what}
├── Why: {why}
├── Alternatives: {alternatives}
└── Added to: {feature}.design.decisions
/context inject {feature}
특정 기능의 의존 기능들 컨텍스트를 주입한다.
실행
# 기능 노드 로드
cat ~/.claude/feature-map/nodes/{feature}.json
# 의존 기능들 로드
for dep in depends_on:
cat ~/.claude/feature-map/nodes/{dep}.json
출력
Starting: {feature}
├── Depends: {dep1}, {dep2}
│
├── [{dep1}] Context:
│ ├── {설계 결정 1}
│ └── {설계 결정 2}
│
└── [{dep2}] Context:
└── {설계 결정}
/context show {feature}
기능 노드의 전체 내용을 표시한다.
cat ~/.claude/feature-map/nodes/{feature}.json
スコア
総合スコア
40/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です