affaan-m/ECC

continuous-learning

Use it for engineering tasks; the detail page covers purpose, installation, and practical steps.

67CollectingClaude Code
See source evidenceView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/continuous-learning"
Source profileDocumentationCatalog only

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Limited to facts supported by the pinned source

What the pinned source establishes about continuous-learning

Claude Codeセッションを終了時に自動的に評価し、学習済みスキルとして保存できる再利用可能なパターンを抽出します。

npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/continuous-learning"
Check the pinned source

The pinned source contains about 98 English words and 9 usable sections. That evidence supports a source profile, not a complete guide.

98 source words · 9 usable sections

What the source actually contains

3 verifiable source sections for continuous-learning

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

動作原理

このスキルは各セッション終了時にStopフックとして実行されます:

SKILL.md · 動作原理
セッション評価: セッションに十分なメッセージがあるか確認(デフォルト: 10以上)パターン検出: セッションから抽出可能なパターンを識別スキル抽出: 有用なパターンを/.claude/skills/learned/に保存
02

設定

Review the “設定” section in the pinned source before continuing.

SKILL.md · 設定
Review and apply the “設定” source section.
03

パターンの種類

Review the “パターンの種類” section in the pinned source before continuing.

SKILL.md · パターンの種類
Review and apply the “パターンの種類” source section.

Choose a different workflow

When another Skill is the better fit

FAQ

How do I install continuous-learning?

The source record exposes this install command: npx skills add https://github.com/affaan-m/ECC --skill "docs/ja-JP/skills/continuous-learning". Inspect the command and pinned source before running it.

Which Agent platforms does the source record declare?

The pinned source record declares support for: claude code.

Repository stars
234,327
Repository forks
35,711
Quality
67/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

67/100
Documentation20/30
Specificity14/25
Maintenance18/20
Trust signals15/25
View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 1 min

継続学習スキル

Claude Codeセッションを終了時に自動的に評価し、学習済みスキルとして保存できる再利用可能なパターンを抽出します。

動作原理

このスキルは各セッション終了時にStopフックとして実行されます:

  1. セッション評価: セッションに十分なメッセージがあるか確認(デフォルト: 10以上)
  2. パターン検出: セッションから抽出可能なパターンを識別
  3. スキル抽出: 有用なパターンを~/.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"
      }]
    }]
  }
}

Stopフックを使用する理由

  • 軽量: セッション終了時に1回だけ実行
  • ノンブロッキング: すべてのメッセージにレイテンシを追加しない
  • 完全なコンテキスト: セッション全体のトランスクリプトにアクセス可能

関連項目

  • The Longform Guide - 継続学習に関するセクション
  • /learnコマンド - セッション中の手動パターン抽出

比較ノート (調査: 2025年1月)

vs Homunculus

Homunculus v2はより洗練されたアプローチを採用:

機能このアプローチHomunculus v2
観察Stopフック(セッション終了時)PreToolUse/PostToolUseフック(100%信頼性)
分析メインコンテキストバックグラウンドエージェント(Haiku)
粒度完全なスキル原子的な「本能」
信頼度なし0.3-0.9の重み付け
進化直接スキルへ本能 → クラスタ → スキル/コマンド/エージェント
共有なし本能のエクスポート/インポート

homunculusからの重要な洞察:

"v1はスキルに観察を依存していました。スキルは確率的で、発火率は約50-80%です。v2は観察にフック(100%信頼性)を使用し、学習された振る舞いの原子単位として本能を使用します。"

v2の潜在的な改善

  1. 本能ベースの学習 - 信頼度スコアリングを持つ、より小さく原子的な振る舞い
  2. バックグラウンド観察者 - 並行して分析するHaikuエージェント
  3. 信頼度の減衰 - 矛盾した場合に本能の信頼度が低下
  4. ドメインタグ付け - コードスタイル、テスト、git、デバッグなど
  5. 進化パス - 関連する本能をスキル/コマンドにクラスタ化

詳細: docs/continuous-learning-v2-spec.mdを参照。

Source repo
affaan-m/ECC
Skill path
docs/ja-JP/skills/continuous-learning/SKILL.md
Commit SHA
4e973d3eaf92
Repository license
MIT
Data collected