What problem does it solve?
This Skill turns your Claude Code sessions into reusable knowledge by observing sessions, creating atomic instincts with confidence scoring, and evolving them into skills/commands/agents.
Core Features & Use Cases
- Automated Learning: Observes Claude Code sessions and creates instincts from the patterns.
- Confidence Scoring: Provides confidence scoring for each instinct based on observation frequency.
- Instinct Evolution: Evolves instincts into full skills, commands, or agents.
- Project-Scope Instincts: Prevents cross-project contamination with project-scoped instincts.
- Use Case: Use this Skill to automatically extract and evolve patterns from your codebase into reusable code snippets or tools.
Quick Start
To enable observation hooks for the 'continuous-learning-v2' skill, add the following to your '.claude/settings.json':
{
"hooks": {
"PreToolUse": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/hooks/observe.sh"
}]
}],
"PostToolUse": [{
"matcher": "*",
"hooks": [{
"type": "command",
"command": "${CLAUDE_PLUGIN_ROOT}/skills/continuous-learning-v2/hooks/observe.sh"
}]
}]
}
}