continuous-learning-v2
フックを介してセッションを観察し、信頼度スコアリング付きのアトミックなインスティンクトを作成し、スキル/コマンド/エージェントに進化させるインスティンクトベースの学習システム。
76/100
Security score
The continuous-learning-v2 skill was audited on Mar 16, 2026 and we found 12 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
medium line 95
Access to home directory dotfiles
SourceSKILL.md
| 93 | ### 1. 観察フックを有効化 |
| 94 | |
| 95 | `~/.claude/settings.json`に追加します。 |
| 96 | |
| 97 | **プラグインとしてインストールした場合**(推奨): |
medium line 120
Access to home directory dotfiles
SourceSKILL.md
| 118 | ``` |
| 119 | |
| 120 | **`~/.claude/skills`に手動でインストールした場合**: |
| 121 | |
| 122 | ```json |
low line 129
Access to home directory dotfiles
SourceSKILL.md
| 127 | "hooks": [{ |
| 128 | "type": "command", |
| 129 | "command": "~/.claude/skills/continuous-learning-v2/hooks/observe.sh pre" |
| 130 | }] |
| 131 | }], |
low line 136
Access to home directory dotfiles
SourceSKILL.md
| 134 | "hooks": [{ |
| 135 | "type": "command", |
| 136 | "command": "~/.claude/skills/continuous-learning-v2/hooks/observe.sh post" |
| 137 | }] |
| 138 | }] |
low line 148
Access to home directory dotfiles
SourceSKILL.md
| 146 | |
| 147 | ```bash |
| 148 | mkdir -p ~/.claude/homunculus/{instincts/{personal,inherited},evolved/{agents,skills,commands}} |
| 149 | touch ~/.claude/homunculus/observations.jsonl |
| 150 | ``` |
low line 149
Access to home directory dotfiles
SourceSKILL.md
| 147 | ```bash |
| 148 | mkdir -p ~/.claude/homunculus/{instincts/{personal,inherited},evolved/{agents,skills,commands}} |
| 149 | touch ~/.claude/homunculus/observations.jsonl |
| 150 | ``` |
| 151 |
low line 179
Access to home directory dotfiles
SourceSKILL.md
| 177 | "observation": { |
| 178 | "enabled": true, |
| 179 | "store_path": "~/.claude/homunculus/observations.jsonl", |
| 180 | "max_file_size_mb": 10, |
| 181 | "archive_after_days": 7 |
low line 184
Access to home directory dotfiles
SourceSKILL.md
| 182 | }, |
| 183 | "instincts": { |
| 184 | "personal_path": "~/.claude/homunculus/instincts/personal/", |
| 185 | "inherited_path": "~/.claude/homunculus/instincts/inherited/", |
| 186 | "min_confidence": 0.3, |
low line 185
Access to home directory dotfiles
SourceSKILL.md
| 183 | "instincts": { |
| 184 | "personal_path": "~/.claude/homunculus/instincts/personal/", |
| 185 | "inherited_path": "~/.claude/homunculus/instincts/inherited/", |
| 186 | "min_confidence": 0.3, |
| 187 | "auto_approve_threshold": 0.7, |
low line 203
Access to home directory dotfiles
SourceSKILL.md
| 201 | "evolution": { |
| 202 | "cluster_threshold": 3, |
| 203 | "evolved_path": "~/.claude/homunculus/evolved/" |
| 204 | } |
| 205 | } |
low line 211
Access to home directory dotfiles
SourceSKILL.md
| 209 | |
| 210 | ``` |
| 211 | ~/.claude/homunculus/ |
| 212 | ├── identity.json # プロフィール、技術レベル |
| 213 | ├── observations.jsonl # 現在のセッション観察 |
medium line 265
Access to home directory dotfiles
SourceSKILL.md
| 263 | |
| 264 | v2はv1と完全に互換性があります: |
| 265 | - 既存の`~/.claude/skills/learned/`スキルは引き続き機能 |
| 266 | - Stopフックは引き続き実行される(ただしv2にもフィードされる) |
| 267 | - 段階的な移行パス:両方を並行して実行 |
Scanned on Mar 16, 2026
View Security Dashboard