compound-learnings

Solid

Transform session learnings into permanent capabilities (skills, rules, agents). Use when asked to "improve setup", "learn from sessions", "compound learnings", or "what patterns should become skills".

AI & Automation 496 stars 41 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 89/100

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

Skill Content

# Compound Learnings Transform ephemeral session learnings into permanent, compounding capabilities. ## When to Use - "What should I learn from recent sessions?" - "Improve my setup based on recent work" - "Turn learnings into skills/rules" - "What patterns should become permanent?" - "Compound my learnings" ## Process ### Step 1: Gather Learnings ```bash # List learnings (most recent first) ls -t $CLAUDE_PROJECT_DIR/.claude/cache/learnings/*.md | head -20 # Count total ls $CLAUDE_PROJECT_DIR/.claude/cache/learnings/*.md | wc -l ``` Read the most recent 5-10 files (or specify a date range). ### Step 2: Extract Patterns (Structured) For each learnings file, extract entries from these specific sections: | Section Header | What to Extract | |----------------|-----------------| | `## Patterns` or `Reusable techniques` | Direct candidates for rules | | `**Takeaway:**` or `**Actionable takeaway:**` | Decision heuristics | | `## What Worked` | Success patterns | | `## What Failed` | Anti-patterns (invert to rules) | | `## Key Decisions` | Design principles | Build a frequency table as you go: ```markdown | Pattern | Sessions | Category | |---------|----------|----------| | "Check artifacts before editing" | abc, def, ghi | debugging | | "Pass IDs explicitly" | abc, def, ghi, jkl | reliability | ``` ### Step 2b: Consolidate Similar Patterns Before counting, merge patterns that express the same principle: **Example con...

Details

Author
vibeeval
Repository
vibeeval/vibecosystem
Created
2 months ago
Last Updated
1 months ago
Language
C#
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category