<< All versions
Skill v1.0.0
currentAutomated scan100/100wenjunduan/rlues/continuous-learning
──Details
PublishedMay 17, 2026 at 01:34 PM
Content Hashsha256:d4971592c9644112...
Git SHA82b2cdfb05c1
──Files
Files (1 file, 1.3 KB)
SKILL.md1.3 KBactive
SKILL.md · 46 lines · 1.3 KB
version: "1.0.0" name: continuous-learning description: | Auto-extract reusable patterns from coding sessions. Activates on session end or when /learn command is invoked. Identifies successful patterns, debugging solutions, and architectural decisions worth preserving for future sessions.
Continuous Learning Skill
Extract and preserve valuable patterns from development sessions.
When to Use
- Session ending with significant work completed
- User invokes
/learncommand mid-session - After successful debugging of complex issues
- When discovering new architectural patterns
Pattern Categories
| Type | Description | |
|---|---|---|
code | Reusable code patterns | |
debugging | Debug approaches | |
architecture | Design decisions | |
workflow | Process improvements |
Extraction Workflow
- Session Analysis - Evaluate for extractable patterns
- Pattern Identification - Filter reusable, non-trivial solutions
- User Confirmation - Present for approval
- Storage - Save to
.ai_state/experience/learned/ - Index Update - Add to experience index
Quality Criteria
Patterns worth extracting must:
- ✅ Be reusable across projects
- ✅ Save significant time/effort
- ✅ Document non-obvious solutions
- ❌ NOT be trivial or well-documented
- ❌ NOT be too project-specific