Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Universal self-improvement system that learns from every skill interaction using multi-memory architecture.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/appendix.md
1# Appendix23## Self-Validation45### Validation Report Template67```markdown8## Validation Report Template910**Date**: [YYYY-MM-DD]11**Scope**: [skill(s) validated]1213### Checks14- [ ] Examples compile or run15- [ ] Checklists match current repo conventions16- [ ] External references still valid17- [ ] No duplicated or conflicting guidance1819### Findings20- [Finding 1]21- [Finding 2]2223### Actions24- [Action 1]25- [Action 2]26```2728## Memory File Structure2930```31~/.claude/memory/32├── semantic/33│ └── patterns.json34├── episodic/35│ ├── 2025/36│ │ ├── 2025-01-11-prd-creation.json37│ │ └── 2025-01-11-debug-session.json38│ └── episodes.json39├── working/40│ ├── current_session.json41│ ├── last_error.json42│ └── session_end.json43└── index.json44```4546## Automatic Workflow Integration4748```49Any Skill Run50-> workflow-orchestrator51-> self-improving-agent (background)52-> create-pr (ask_first)53-> session-logger (auto)54```5556## Continuous Learning Metrics5758```json59{60"metrics": {61"patterns_learned": 47,62"patterns_applied": 238,63"skills_updated": 12,64"avg_confidence": 0.87,65"user_satisfaction_trend": "improving",66"error_rate_reduction": "-35%",67"self_corrections": 868}69}70```7172## Human-in-the-Loop7374### Feedback Collection7576```markdown77## Self-Improvement Summary7879I've learned from our session and updated:8081### Updated Skills82- `debugger`: Added callback verification pattern83- `prd-planner`: Enhanced UI/UX specification requirements8485### Patterns Extracted861. **state_monitoring_over_callbacks**: Use usePrevious for state-driven side effects872. **ui_ux_specification_granularity**: Explicit visual specs prevent rework8889### Confidence Levels90- New patterns: 0.85 (needs validation)91- Reinforced patterns: 0.95 (well-established)9293### Your Feedback94Rate these improvements (1-10):95- Were the updates helpful?96- Should I apply this pattern more broadly?97- Any corrections needed?98```99100### Feedback Integration101102```yaml103User Feedback:104positive (rating >= 7):105action: Increase pattern confidence106scope: Expand to related skills107108neutral (rating 4-6):109action: Keep pattern, gather more data110scope: Current skill only111112negative (rating <= 3):113action: Decrease confidence, revise pattern114scope: Remove from active patterns115```116117## Templates118119| Template | Purpose |120|----------|---------|121| `templates/pattern-template.md` | Adding new patterns |122| `templates/correction-template.md` | Fixing incorrect guidance |123| `templates/validation-template.md` | Validating skill accuracy |124125## References126127- [SimpleMem: Efficient Lifelong Memory for LLM Agents](https://arxiv.org/html/2601.02553v1)128- [A Survey on the Memory Mechanism of Large Language Model Agents](https://dl.acm.org/doi/10.1145/3748302)129- [Lifelong Learning of LLM based Agents](https://arxiv.org/html/2501.07278v1)130- [Evo-Memory: DeepMind's Benchmark](https://shothota.medium.com/evo-memory-deepminds-new-benchmark)131- [Let's Build a Self-Improving AI Agent](https://medium.com/@nomannayeem/lets-build-a-self-improving-ai-agent-that-learns-from-your-feedback-722d2ce9c2d9)132