learned-skills-index
Tracks and manages skills automatically extracted from successful task execution feedback.
Install
mkdir -p .claude/skills/learned-skills-index && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/16266" && unzip -o skill.zip -d .claude/skills/learned-skills-index && rm skill.zipInstalls to .claude/skills/learned-skills-index
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Index directory for automatically learned skills from execution feedbackKey capabilities
- →Extract successful patterns from quality-improving execution iterations.
- →Compile patterns into learnable skill definitions.
- →Promote skills that meet minimum quality thresholds.
- →Retrieve learned skills based on task description keywords.
- →Track provenance of all learned skills.
- →Manage skill status (Pending, Promoted, Archived).
How it works
This skill extracts successful patterns from execution feedback, generates skill definitions, and promotes them based on quality thresholds.
Inputs & outputs
When to use learned-skills-index
- →Checking available learned skills
- →Reviewing automation patterns
- →Managing skill status
About this skill
Learned Skills Index
This directory contains skills that have been automatically extracted from successful execution sessions. These skills represent patterns that led to quality improvements and are available for retrieval in future tasks.
How Skills Are Learned
- Execution: Claude Code runs a task with
--loopenabled - Feedback Collection: Each iteration's quality scores and improvements are recorded
- Pattern Extraction: Successful patterns are extracted from quality-improving iterations
- Skill Generation: Patterns are compiled into a learnable skill definition
- Promotion Gate: Skills must meet quality thresholds before promotion
Skill Status
| Status | Meaning |
|---|---|
| Pending | Skill extracted but not yet promoted (needs more validation) |
| Promoted | Skill has been validated and can be applied to new tasks |
| Archived | Skill deprecated or superseded by newer learning |
Quality Thresholds for Promotion
- Minimum quality score: 85.0
- Minimum successful applications: 2
- Minimum success rate: 70%
Directory Structure
learned/
├── SKILL.md # This index file
├── learned-backend-auth/ # Example learned skill
│ ├── SKILL.md # Skill definition
│ └── metadata.json # Machine-readable metadata
└── learned-frontend-form/ # Another learned skill
├── SKILL.md
└── metadata.json
Integration
Learned skills are automatically retrieved based on:
- Task description keywords
- File types being modified
- Domain context
To manually query learned skills:
from core.skill_persistence import retrieve_skills_for_task
skills = retrieve_skills_for_task(
task_description="your task here",
domain="backend" # optional
)
Safety
All learned skills include full provenance:
- Source session ID
- Source repository
- Timestamp of learning
- Quality progression
This enables rollback and audit of any behavioral changes from learned skills.
When not to use it
- →When manually creating new skills.
- →When the task is not related to automatically learned patterns.
- →When the skill is not intended for retrieval in future tasks.
Limitations
- →Skills must meet specific quality thresholds for promotion.
- →Skill generation relies on successful patterns from execution sessions.
- →Retrieval is based on task description keywords, file types, and domain context.
How it compares
This workflow automatically generates and manages skills from execution feedback, providing a dynamic learning mechanism unlike static skill definitions.
Compared to similar skills
learned-skills-index side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| learned-skills-index (this skill) | 0 | 2mo | No flags | Advanced |
| using-superpowers | 95 | 3mo | No flags | Beginner |
| ultrawork | 11 | 2mo | No flags | Advanced |
| clawhub | 25 | 3mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by majiayu000
View all by majiayu000 →You might also like
using-superpowers
obra
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists
ultrawork
Yeachan-Heo
Parallel execution engine for high-throughput task completion
clawhub
openclaw
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
skill-installer
openai
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
continuous-learning
affaan-m
Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
memory-keeper-proactive-context-maintenance
b4CU-R4U
Automatically detect and maintain memory freshness by monitoring context staleness, significant code changes, task completions, and phase transitions. Proactively suggests and executes memory sync operations with user confirmation. Use when the user says "sync memory", "update context", or when the Skill detects that context is stale (>2 hours), significant changes have occurred (new commits), tasks completed, or major milestones reached. Replaces passive "context is stale" warnings with active maintenance.