Agent skill · Workflow & Productivity

experience-library

Capture task outcomes, score performance, and derive rules as token priors for continual learning without model weight changes. Use for post-task feedback, experience capture, pattern extraction, and learning from mistakes. Achieves continual learning for $18 per 100 samples vs $10k fine-tune cost. Triggers on "learn from experience", "capture patterns", "post-task analysis", "continual learning", "experience extraction".

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill experience-library-dredd-us-seashells-2 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/ai-llm/experience-library-dredd-us-seashells-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Experience Library Update ## Purpose Sample task answers, score outcomes, and derive rules as token priors - achieving continual learning for $18/100 samples vs $10k fine-tune cost, without changing model weights. ## When to Use - Post-task learning and improvement - Capturing successful patterns - Learning from failures - Tool call optimization - Building domain expertise over time - Pattern extraction from experience ## Core Instructions ### Pattern: Experience Capture Loop ```python def update_experience_library(task, answer, outcome): """ Capture and learn from task experience """ # 1. Score the outcome score = evaluate_outcome(answer, outcome) # 2. Extract patterns if successful if score > threshold: pattern = extract_pattern(task, answer) library.add_rule(pattern) # 3. Use as token prior (no weight changes) return library.get_relevant_rules(new_task) ``` ### Step 1: Score Task Outcome ```python def evaluate_outcome(answer, outcome): """ Score how well the task was completed Returns: float: Score from 0.0 (failed) to 1.0 (perfect) """ metrics = { 'correctness': check_correctness(answer, outcome), 'efficiency': measure_efficiency(answer), 'completeness': check_completeness(an

What's inside
Steps it walks through
  1. Purpose
  2. When to Use
  3. Core Instructions
  4. Pattern: Experience Capture Loop
  5. Step 1: Score Task Outcome
  6. Step 2: Extract Patterns
  7. Step 3: Store as Token Prior
  8. Step 4: Apply to New Tasks
  9. Example Workflow
  10. Initial Task (No Experience)
  11. Similar Task Later (With Experience)
  12. Performance Characteristics
  13. Pattern Storage
  14. Best Practices
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the experience-library skill do?

Capture task outcomes, score performance, and derive rules as token priors for continual learning without model weight changes. Use for post-task feedback, experience capture, pattern extraction, and learning from mistakes. Achieves continual learning for $18 per 100 samples vs $10k fine-tune cost. Triggers on "learn from experience", "capture patterns", "post-task analysis", "continual learning", "experience extraction".

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill experience-library-dredd-us-seashells-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going