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

Self Evolve

skill-jnmetacode-skillet-self-evolve · by jnMetaCode

Make the agent improve with every task — review the run, distill lessons into durable memory, and reinforce what worked. Use at the end of any non-trivial task, or when the user asks the agent to "learn from this".

No reviews yet
0 installs
38 views
0.0% view→install

Install

$ agentstack add skill-jnmetacode-skillet-self-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-jnmetacode-skillet-self-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 Self Evolve? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

self-evolve

An agent that doesn't learn repeats its mistakes at full price. This skill is the improvement loop: observe the run → distill the lesson → store it → reinforce what worked → recall it next time. It uses local tools (engram for memory, tracelet for observation), so the learning stays on the user's machine.

The loop (run it at the end of each non-trivial task)

  1. Observe what actually happened. Don't trust your memory of the run —

check it. If tracing is on (npx @jnmetacode/tracelet), look at the trace: which tool calls failed or were retried, where the time and tokens went, which approach was abandoned. Without a trace, review your own steps: what did you try first that didn't work?

  1. Distill at most 1–3 lessons. A lesson is durable knowledge that would

change how you act next time, not a diary entry:

  • a root cause ("the staging DB rejects connections without SSL")
  • a working recipe ("build fails unless npm ci runs before codegen")
  • a user preference revealed by a correction ("they want diffs, not files")

Skip anything the repo/docs already record.

  1. Store each lesson (one fact per memory, dated, with the why):

`` engram_remember: "2026-06-12: deploys to staging need SSL_MODE=require — the pooler silently drops non-SSL connections (cost us 40 min)." ` (CLI: npx @jnmetacode/engram remember … via the HTTP API, or the engram_remember` MCP tool.)

  1. Reinforce retrievals that proved right. If you recalled a memory during

the task and it turned out to be the correct answer, say so — recall gets measurably better with use: `` engram_reinforce: { query: "staging deploy fails", source: "deploys" } `` Future similar queries will rank that source higher. Only reinforce what was verified (the fix worked, the user confirmed) — reinforcing guesses trains the memory to be confidently wrong.

  1. Close the loop next task: recall before you act. Start non-trivial

tasks with a recall of the relevant area (engram_recall: "staging deploy"). The loop only pays off if stored lessons actually get read.

Calibration

  • Don't hoard. One sharp lesson beats ten vague ones; if everything is a

lesson, nothing is. When a memory turns out to be wrong, delete it (engram forget ) rather than stacking corrections on top.

  • Promote recurring lessons into skills. The third time a lesson is about

procedure ("always do X before Y in this kind of task"), it has outgrown memory — write it into a SKILL.md (npx @jnmetacode/skillet new ) so every future session starts with it instead of having to recall it.

  • Stay honest. The loop measures itself: if reinforced recalls keep

surfacing the wrong source, the lessons are badly written — rewrite them more concretely instead of reinforcing harder.

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.