Install
$ agentstack add skill-winterddo-claude-code-skill-autopilot-evolve ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
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 →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
- Read
~/.claude/command-autopilot/events.jsonl. Also readlearned.jsonif present (schema below). - 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
- 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, setstatus: "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.
- Write
learned.json:
{
"updated": "",
"rules": [
{"text": "...", "evidence": 4, "first": "", "last": "", "status": "in_force"}
]
}
- Archive processed events — rotate FIRST to avoid racing concurrent appends: rename
events.jsonltoevents-archive-.jsonl, and only then read the renamed file for the distillation. New events land in a freshevents.jsonluntouched. (If you already read before rotating, rotate anyway and accept the tiny overlap.) - 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.
- Author: WinterDDo
- Source: WinterDDo/claude-code-skill-autopilot
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.