활성화 시점
Claude Code 세션에서 자동 패턴 추출을 설정할 때
affaan-m/ECC
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
npx skills add https://github.com/affaan-m/ECC --skill "docs/ko-KR/skills/continuous-learning"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Limited to facts supported by the pinned source
Claude Code 세션 종료 시 자동으로 평가하여 학습된 스킬로 저장할 수 있는 재사용 가능한 패턴을 추출합니다.
npx skills add https://github.com/affaan-m/ECC --skill "docs/ko-KR/skills/continuous-learning"The pinned source contains about 142 English words and 13 usable sections. That evidence supports a source profile, not a complete guide.
142 source words · 13 usable sections
What the source actually contains
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
Claude Code 세션에서 자동 패턴 추출을 설정할 때
이 스킬은 각 세션 종료 시 Stop Hook으로 실행됩니다:
config.json을 편집하여 사용자 지정합니다:
Choose a different workflow
Claude Code oturumlarından yeniden kullanılabilir kalıpları otomatik olarak çıkarın ve gelecekte kullanmak üzere öğrenilmiş skill'ler olarak kaydedin.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailUse it for engineering tasks; the detail page covers purpose, installation, and practical steps.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailAutomatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailFAQ
The source record exposes this install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/ko-KR/skills/continuous-learning". Inspect the command and pinned source before running it.
The pinned source record declares support for: claude code.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
Compare before choosing
These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.
Claude Code oturumlarından yeniden kullanılabilir kalıpları otomatik olarak çıkarın ve gelecekte kullanmak üzere öğrenilmiş skill'ler olarak kaydedin.
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.
[DEPRECATED - use continuous-learning-v2] Legacy v1 stop-hook skill extractor. v2 is a strict superset with instinct-based, project-scoped, hook-reliable learning. Do not invoke v1; route continuous learning, session learning, and pattern extraction requests to continuous-learning-v2.
Claude Code 세션 종료 시 자동으로 평가하여 학습된 스킬로 저장할 수 있는 재사용 가능한 패턴을 추출합니다.
~/.claude/skills/learned/에서 학습된 스킬을 검토하거나 큐레이션할 때이 스킬은 각 세션 종료 시 Stop Hook으로 실행됩니다:
~/.claude/skills/learned/에 저장config.json을 편집하여 사용자 지정합니다:
{
"min_session_length": 10,
"extraction_threshold": "medium",
"auto_approve": false,
"learned_skills_path": "~/.claude/skills/learned/",
"patterns_to_detect": [
"error_resolution",
"user_corrections",
"workarounds",
"debugging_techniques",
"project_specific"
],
"ignore_patterns": [
"simple_typos",
"one_time_fixes",
"external_api_issues"
]
}
| 패턴 | 설명 |
|---|---|
error_resolution | 특정 에러가 어떻게 해결되었는지 |
user_corrections | 사용자 수정으로부터의 패턴 |
workarounds | 프레임워크/라이브러리 특이점에 대한 해결책 |
debugging_techniques | 효과적인 디버깅 접근법 |
project_specific | 프로젝트 고유 컨벤션 |
~/.claude/settings.json에 추가합니다:
{
"hooks": {
"Stop": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "~/.claude/skills/continuous-learning/evaluate-session.sh"
}]
}]
}
}
{
"min_session_length": 10,
"extraction_threshold": "medium",
"auto_approve": false,
"learned_skills_path": "~/.claude/skills/learned/"
}
{
"hooks": {
"Stop": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "~/.claude/skills/continuous-learning/evaluate-session.sh"
}]
}]
}
}
/learn 명령어 - 세션 중 수동 패턴 추출Homunculus v2는 더 정교한 접근법을 취합니다:
| 기능 | 우리의 접근법 | Homunculus v2 |
|---|---|---|
| 관찰 | Stop Hook (세션 종료 시) | PreToolUse/PostToolUse Hook (100% 신뢰) |
| 분석 | 메인 컨텍스트 | 백그라운드 에이전트 (Haiku) |
| 세분성 | 완전한 스킬 | 원자적 "본능" |
| 신뢰도 | 없음 | 0.3-0.9 가중치 |
| 진화 | 스킬로 직접 | 본능 -> 클러스터 -> 스킬/명령어/에이전트 |
| 공유 | 없음 | 본능 내보내기/가져오기 |
Homunculus의 핵심 통찰:
"v1은 관찰을 스킬에 의존했습니다. 스킬은 확률적이어서 약 50-80%의 확률로 실행됩니다. v2는 관찰에 Hook(100% 신뢰)을 사용하고 본능을 학습된 행동의 원자 단위로 사용합니다."
자세한 사양은 continuous-learning-v2-spec.md를 참조하세요.