LE

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.zip

Installs 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 feedback
72 charsno explicit “when” trigger
Advanced

Key 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

You give it
Successful execution sessions with quality scores and improvements
You get back
Generated skill definition, updated skill status, or retrieved skills for a given task

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

  1. Execution: Claude Code runs a task with --loop enabled
  2. Feedback Collection: Each iteration's quality scores and improvements are recorded
  3. Pattern Extraction: Successful patterns are extracted from quality-improving iterations
  4. Skill Generation: Patterns are compiled into a learnable skill definition
  5. Promotion Gate: Skills must meet quality thresholds before promotion

Skill Status

StatusMeaning
PendingSkill extracted but not yet promoted (needs more validation)
PromotedSkill has been validated and can be applied to new tasks
ArchivedSkill 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.

SkillInstallsUpdatedSafetyDifficulty
learned-skills-index (this skill)02moNo flagsAdvanced
using-superpowers953moNo flagsBeginner
ultrawork112moNo flagsAdvanced
clawhub253moReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

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

95205

ultrawork

Yeachan-Heo

Parallel execution engine for high-throughput task completion

11184

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.

25151

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).

29141

continuous-learning

affaan-m

Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.

995

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.

694

Search skills

Search the agent skills registry