Autonomous self-improvement for your agent skills.
Reads past sessions, analyzes them against loaded skills, generates structured proposals, and optionally auto-applies high-confidence improvements. Host-agnostic: ships adapters for Hermes and Claude Code, with an extensible HostAdapter interface for new hosts.
No daemons. No external services. No GPU. Just your host agent, a scheduled job, and Python stdlib.
Everything below has a sane default, but two things are not optional if you want the pipeline to actually work end to end rather than silently doing nothing or getting stuck:
| Variable | Required when | Why |
|---|---|---|
SKILL_EVOLUTION_HOST |
You're on anything other than Hermes | Defaults to hermes. There is no auto-detection — running on Claude Code without setting this to claude_code reads (and would try to write) the wrong host's session DB and skills tree. |
A provider credential (ANTHROPIC_API_KEY by default, or the key matching SKILL_EVOLUTION_PROVIDER) |
Always, unless you only ever run deterministic-only evaluation |
The evaluation gate's llm_judge (part of the default evaluator set) fails closed without a working provider — every proposal will fail the gate forever, even after you approve it, with no error beyond "gate failed" in the result. |
Everything else is optional and only needs to be set to change a default:
| Variable | Default | Purpose |
|---|---|---|
SKILL_EVOLUTION_REPO |
current working directory | Where a cron job finds scripts/ |
SKILL_EVOLUTION_PROPOSALS_DIR |
./proposals/ |
Where proposal files are read/written |
SKILL_EVOLUTION_AUTO_APPLY / SKILL_EVOLUTION_MIN_CONFIDENCE |
off / 0.85 |
Read by your apply step, not by the scripts themselves — see "Auto-Apply" below |
SKILL_EVOLUTION_EVALUATORS |
deterministic,llm_judge,regression |
Which evaluators the gate runs |
SKILL_EVOLUTION_GATE_STRICTNESS |
strict |
strict (all must pass) or majority |
SKILL_EVOLUTION_PROVIDER |
claude |
claude / ollama / opencode / openai / gemini |
SKILL_EVOLUTION_CLAUDE_CODE_HOME |
~/.claude |
Only read when SKILL_EVOLUTION_HOST=claude_code |
SKILL_EVOLUTION_HISTORY_PATH |
./eval_history.jsonl |
Evaluation history file |
See CLAUDE.md and SKILL.md for the full list — this table is the minimum you need to
read before your first run, not an exhaustive reference.
Hermes:
# Install the skill
hermes skills install https://raw.githubusercontent.com/Carlo1911/skill-evolution/main/SKILL.md
# Load it
hermes -s skill-evolution
# Run analysis
"Run skill evolution analysis on my recent sessions"Claude Code: clone the repo and load the skill as a directory. Set
SKILL_EVOLUTION_HOST=claude_code so the read/write adapter routes to ~/.claude.
The agent will:
- Fetch unprocessed sessions from the host's session database
- Scan your installed skills
- Analyze each session for coverage gaps
- Generate proposal files in
./proposals/(override withSKILL_EVOLUTION_PROPOSALS_DIR) - Deliver a summary
By default, proposals are review-only. Enable auto-apply:
export SKILL_EVOLUTION_AUTO_APPLY=true
export SKILL_EVOLUTION_MIN_CONFIDENCE=0.85A full manual walkthrough on Claude Code, from "do I have anything new to analyze" to "a proposal is actually applied." This mirrors what a scheduled job automates, one step at a time.
# 0. Configure the host and a provider for the evaluation gate (see "Minimum Configuration")
export SKILL_EVOLUTION_HOST=claude_code
export ANTHROPIC_API_KEY=sk-ant-...
# 1. Check how many unprocessed sessions exist, without marking anything as processed
python3 scripts/fetch_sessions.py --dry-run --lookback-hours 72
# → "14 unprocessed sessions found"
# 2. In a Claude Code session with the skill loaded, ask:
# "Run skill evolution analysis on my recent sessions"
#
# Under the hood, that prompt runs the same pipeline this repo ships as scripts —
# fetch_sessions.py's output formatted by analyze.py, plus skill_index.py's skill
# index — and feeds both to the host agent's own reasoning (the LLM analysis step
# is not a script in this repo; the agent performs it directly):
python3 scripts/fetch_sessions.py --lookback-hours 72 | python3 scripts/analyze.py > /tmp/sessions.txt
python3 scripts/skill_index.py > /tmp/skills.json
# The agent then writes one proposal file per finding into ./proposals/, and marks
# those sessions processed.
# 3. Inspect what got proposed
python3 scripts/proposal.py --list
python3 scripts/proposal.py --show 20260804-001
# 4. Review the proposal file and, if you agree with it, approve it by hand:
# edit proposals/20260804-001.md, change `status: proposed` to `status: approved`
# 5. Apply it. There is no CLI for this on purpose — apply_proposal() is meant to be
# invoked by a human or by a step you write, never by the analysis session itself.
# This call runs the full evaluation gate first and only mutates the skill if it passes:
python3 -c "
import sys; sys.path.insert(0, 'scripts')
from proposal import load_proposal, apply_proposal
p = load_proposal('proposals/20260804-001.md')
result = apply_proposal(p, min_confidence=0.85)
print('can_apply:', result['can_apply'])
print('reason:', result.get('reason', result.get('evaluation_results')))
"What can_apply means depends on the host: on Claude Code, True means the skill file
was already rewritten on disk (applied_by: direct); on Hermes, True means the result
carries skill_manage instruction dicts that a separate agent step still has to execute
(applied_by: agent) — apply_proposal() never calls skill_manage itself. False means
the gate failed (check evaluation_results for which evaluator), the host can't write
skills, or the proposal itself is invalid (e.g. a create_new with a placeholder body).
This repo doesn't ship a ready-made cron/job prompt — that's operator-specific (how you
schedule it, what it delivers to, which host you're on) and belongs in your own job
configuration, not in this repo. What the job prompt needs to do: run
scripts/fetch_sessions.py + scripts/skill_index.py, hand the output to an LLM analysis
step using the SKILL_EVOLUTION_* env vars to find the right paths, and have it write
proposals following proposal.py's schema. See SKILL.md's "Scheduled Runs (Cron)"
section for the full contract.
skill-evolution/
├── SKILL.md # Skill file (installable via host's skill install)
├── README.md # This file
├── LICENSE # MIT
├── pyproject.toml # Python package, with `optimizer` and `embeddings` extras
├── scripts/ # Standalone Python tools
│ ├── fetch_sessions.py # Read host session database → NDJSON
│ ├── skill_index.py # Scan skills → JSON index
│ ├── analyze.py # Format sessions for LLM
│ ├── proposal.py # Proposal schema, I/O, apply logic
│ ├── host.py # Host adapter seam (HermesAdapter, ClaudeCodeAdapter, ...)
│ ├── evaluate.py # Evaluation gate (deterministic + LLM-judge + regression + opt-in human_review + embedding_similarity)
│ ├── optimize_skill.py # Optional GEPA optimizer (needs the `gepa` extra)
│ ├── skill_quality.py # Periodic skill quality tracking and trend reports
│ ├── embedding_backends.py # FastEmbed / Ollama / OpenAI / llama.cpp embedding backends
│ ├── embedding_similarity.py # Embedding-similarity evaluator (opt-in)
│ ├── state.py # Track processed sessions (per-host)
│ ├── skill-evolution-fetch.sh # Cron wrapper (Hermes)
│ └── skill-quality-report.sh # Cron wrapper for quality reports
└── tests/ # pytest suite (one file per evaluator/feature area)
flowchart LR
A[fetch_sessions.py] -->|NDJSON| B[job agent]
C[skill_index.py] -->|skill index| B
B -->|analysis| D[Proposal .md files]
D -->|review| E{Human approves?}
E -->|Yes| F[evaluate.py gate]
F -->|passed| G[host adapter applies]
F -->|failed| H[stays proposed]
E -->|No| I[Archive]
Proposals with confidence above threshold still have to pass the evaluation gate — deterministic size checks (absolute cap, per-pass growth and shrink both as a percentage and as an absolute byte count, plus cumulative drift measured against where the skill started), an LLM-judge rubric score, a regression check against that target's own history, and an optional interactive human-rejection veto (SKILL_EVOLUTION_EVALUATORS=...,human_review) — before the host adapter runs the mutation.
The absolute cap is a ratchet: a skill already over the limit can still be replaced by a body no larger than itself, so an oversized skill stays improvable without ever getting worse, while a new skill is never created over the limit. Size comparisons measure against the installed SKILL.md on disk, not against the "current value" a proposal reports about itself.
Note that no automated step applies a proposal. The analysis run writes proposals and stops; the analyzer prompt forbids it from calling the host's skill-mutation tool whatever the confidence. apply_proposal() is invoked by a human, or by a step you write. See SKILL.md for the details and SKILL_EVOLUTION_* environment variables.
Sessions and skills are read through a HostAdapter (scripts/host.py), selected via
SKILL_EVOLUTION_HOST (default hermes).
HermesAdapterreads~/.hermes/state.dband~/.hermes/skills/<category>/<skill>/SKILL.md.apply_proposal()emitsskill_manageinstruction dicts (applied_by: agent).ClaudeCodeAdapterreads~/.claude/skills/*/SKILL.mdand~/.claude/projects/*/*.jsonl.apply_proposal()writes skill files directly (applied_by: direct), archiving deprecate/merge sources underskills/.archive/.
A new host implements the HostAdapter ABC: three read methods (iter_sessions,
iter_skills, read_skill_body) plus a supports_write flag and a concrete
apply_skill_write(plan) that returns the host's mutation plan. See CLAUDE.md for the
full contract.
The judge runs against whichever provider you have credentials for — five stdlib-only adapters, no SDK and no LiteLLM:
SKILL_EVOLUTION_PROVIDER |
Needs | Default model |
|---|---|---|
claude (default) |
ANTHROPIC_API_KEY |
claude-sonnet-5 |
ollama |
a local server | llama3 |
opencode |
OPENCODE_API_KEY |
big-pickle |
openai |
OPENAI_API_KEY |
gpt-4o |
gemini |
GEMINI_API_KEY |
gemini-2.0-flash |
Each evaluator can override the global choice (SKILL_EVOLUTION_<EVALUATOR>_PROVIDER), so
the judge can run somewhere different from the optimizer's reflection step. Every prompt is
run through secret redaction and PII masking before it leaves the machine.
The framework scores four independent targets into one shared history file: skill text
(gates auto-apply by default), plus proposal quality, tool-call quality, and
analyzer-prompt quality — the last three gate auto-apply only when added to
SKILL_EVOLUTION_GATE_TARGETS; by default they are observability-only, inspectable via
evaluate.py --eval-target and optimize_skill.py --list-candidates --target all. See
SKILL.md for the full command reference.
An optional fifth evaluator, embedding_similarity, uses vector embeddings for
semantic checks (duplicate detection, drift detection, grounding verification).
It is opt-in via SKILL_EVOLUTION_EVALUATORS=...,embedding_similarity and requires
the embeddings extra (pip install -e ".[embeddings]").
pip install -e ".[optimizer]" # installs gepa==0.1.4
pip install -e ".[embeddings]" # installs fastembed (for embedding similarity evaluator)
export SKILL_EVOLUTION_OPTIMIZER_ENABLED=true
# Read-only: which targets scored badly enough to be worth optimizing?
python3 scripts/optimize_skill.py --list-candidates
# Run a real gepa.optimize_anything() loop over one skill's session history
python3 scripts/optimize_skill.py --skill <name> [--iterations N]--skill seeds GEPA with the skill's installed SKILL.md, scores candidates against that
skill's own recorded sessions, and drafts an improve_existing proposal from the winner —
through the same review/evaluation gate as any other proposal, never applied directly.
Use the interpreter you installed the extra into: gepa is not needed by the rest of the
pipeline, so a bare python3 without it fails fast with an actionable message.
Periodic quality assessment of all installed skills, using the same rubric as the
evaluation gate. Each skill is scored on correctness, procedure-following, and
conciseness, recorded into eval_history.jsonl, and aggregated into a trend report.
# Evaluate every installed skill and print a markdown report
python3 scripts/skill_quality.py
# Write the report to a file (e.g. for cron)
python3 scripts/skill_quality.py --output reports/skill-quality-2026-08-01.md
# Narrow the run
python3 scripts/skill_quality.py --skill <name> # one skill
python3 scripts/skill_quality.py --since 30d # skip skills evaluated in the last 30 days (cost control)
python3 scripts/skill_quality.py --below 0.7 # only skills scoring below the threshold
python3 scripts/skill_quality.py --format json # JSON instead of markdownCost is one LLM-judge call per skill (~$0.01–0.05 each), so a large skill tree can add up
fast — schedule weekly or monthly, not daily. The cron wrapper
scripts/skill-quality-report.sh writes a timestamped report to reports/ by default;
override with SKILL_EVOLUTION_QUALITY_REPORT_DIR.
- Python 3.10+
- A supported host (Hermes or Claude Code, or any host implementing
HostAdapter) - No pip packages required for the core pipeline
gepa==0.1.4(notdspy) is an optional extra foroptimize_skill.py(pip install -e ".[optimizer]")fastembedis an optional extra for theembedding_similarityevaluator (pip install -e ".[embeddings]")
MIT