continuous-learning

Solid

Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.

AI & Automation 196,640 stars 30253 forks Updated 2 days ago MIT

Install

View on GitHub

Quality Score: 93/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 持續學習技能 自動評估 Claude Code 工作階段結束時的內容,提取可重用模式並儲存為學習技能。 ## 運作方式 此技能作為 **Stop hook** 在每個工作階段結束時執行: 1. **工作階段評估**:檢查工作階段是否有足夠訊息(預設:10+ 則) 2. **模式偵測**:從工作階段識別可提取的模式 3. **技能提取**:將有用模式儲存到 `~/.claude/skills/learned/` ## 設定 編輯 `config.json` 以自訂: ```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` | 專案特定慣例 | ## Hook 設定 新增到你的 `~/.claude/settings.json`: ```json { "hooks": { "Stop": [{ "matcher": "*", "hooks": [{ "type": "command", "command": "~/.claude/skills/continuous-learning/evaluate-session.sh" }] }] } } ``` ## 為什麼用 Stop Hook? - **輕量**:工作階段結束時只執行一次 - **非阻塞**:不會為每則訊息增加延遲 - **完整上下文**:可存取完整工作階段記錄 ## 相關 - [Longform Guide](https://x.com/affaanmustafa/status/2014040193557471352) - 持續學習章節 - `/learn` 指令 - 工作階段中手動提取模式 --- ## 比較筆記(研究:2025 年 1 月) ### vs Homunculus Homunculus v2 採用更複雜的方法: | 功能 | 我們的方法 | Homunculus v2 | |------|----------|---------------| | 觀察 | Stop hook(工作階段結束) | PreToo...

Details

Author
affaan-m
Repository
affaan-m/everything-claude-code
Created
4 months ago
Last Updated
2 days ago
Language
JavaScript
License
MIT

Integrates with

Related Skills