AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Evolve

skill-winterddo-claude-code-skill-autopilot-evolve · by WinterDDo

Distill Skill Autopilot's accumulated usage evidence into personalized rules — the self-evolution step. Use when the autopilot announces an evolution window, or the user says "evolve", "学习一下我的习惯", "update your instincts", "distill autopilot".

— No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-winterddo-claude-code-skill-autopilot-evolve

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-winterddo-claude-code-skill-autopilot-evolve)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Evolve? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Evolution pass (prompt-space gradient descent)

You are updating this system's weights: the personalized rules injected into every prompt. Be conservative — a wrong learned rule costs the user on every message.

Procedure

  1. Read ~/.claude/command-autopilot/events.jsonl. Also read learned.json if present (schema below).
  2. Cluster events by task-type × command/skill. Look for consistent patterns, for example:
  • a command suggested repeatedly and consistently dismissed → candidate negative rule
  • a skill invoked on the same kind of task again and again → candidate positive rule ("invoke X early for Y-type tasks")
  • a habit self-used regularly → mastered, teaching for it should stop
  1. Apply the discipline:
  • Promote only patterns with ≥3 consistent observations and no contradicting evidence → status: "in_force".
  • Demote existing in_force rules contradicted by new evidence (decrement evidence; at 0, set status: "candidate").
  • Decay: rules not reconfirmed for ~60 days → delete.
  • Max 5 in_force rules; each text ≤ 25 tokens, English, imperative, generic phrasing ("research-type tasks: offer /fork early").
  • NEVER write rules that override the safety net (/rewind) or the one-suggestion contract.
  1. Write learned.json:
{
  "updated": "",
  "rules": [
    {"text": "...", "evidence": 4, "first": "", "last": "", "status": "in_force"}
  ]
}
  1. Archive processed events — rotate FIRST to avoid racing concurrent appends: rename events.jsonl to events-archive-.jsonl, and only then read the renamed file for the distillation. New events land in a fresh events.jsonl untouched. (If you already read before rotating, rotate anyway and accept the tiny overlap.)
  2. Report to the user in their language: what was learned (each rule + its evidence), what was demoted or deleted, and one line on what will change. If nothing met the bar, say so plainly — no fabricated learnings.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.