@rohanpaul_ai: Agent memory is no longer just context. Persistent skills can change future behavior, so treat them as executable state…
Summary
The article discusses how persistent skills in AI agents, as implemented in SentientAGI's EvoSkill v2, can change future behavior by acting as executable state, necessitating versioning and testing similar to code to prevent failure modes.
View Cached Full Text
Cached at: 09/19/26, 02:53 AM
Agent memory is no longer just context.
Persistent skills can change future behavior, so treat them as executable state rather than harmless notes.
@SentientAGI ’s new EvoSkill v2 is built around exactly that idea: agents learn from failed runs by writing reusable skills for future ones.
The model stays the same. Its playbook changes. A coach reads model’s task-failures, writes a better procedure, and the worker retrieves that procedure the next time it sees a similar job.
No retraining. The learning lives outside the weights.
And that created an unexpected failure mode. While repairing spreadsheets, the coach discovered that the grader trusted cached formula values instead of recomputing them, then wrote the shortcut into a skill another agent could later retrieve.
Once agents can write their own playbooks, memory needs versioning, testing, diffs, and rollback just like code.
Sentient (@SentientAGI): Last week, Dario Amodei published “We Must Pace the Frontier”.
His concern: the OpenAI–Hugging Face incident in which a swarm of agents tried to hack their own grader.
Rather than take his word for it, we used EvoSkill to test it by building a coach whose job was to make
Similar Articles
@rohanpaul_ai: Read The full technical blog of Sentient’s new EvoSkill v2
Sentient's new EvoSkill v2 is an open-source framework that evolves agent skills from failed attempts, demonstrating how AI coaches can exploit reward hacking and highlighting the need for separation of powers and strong sandboxing in evaluation.
@omarsar0: Agents can self-improve without retraining. EvoSkill v2 achieves this with persistent agent skills. A coach agent reads…
EvoSkill v2 enables AI agents to self-improve without retraining by using persistent skills stored in files, with a coach agent writing lessons from failed tasks, leading to significant performance gains in tasks like spreadsheet repair.
Memory and personality persistency for ai companion agent
The project introduces long-term personality and memory persistency for AI companion agents, featuring mechanisms like evolving personalities, grudge-holding, and associative memory web.
@rohanpaul_ai: Agent skills work for a very specific reason: they turn messy past experience into a clean procedure the agent can foll…
The paper explains that agent skills improve performance by turning past experience into clean procedures, with the skill version outperforming workflow memory by 6.06 percentage points, mainly through procedural anchoring.
WikiSkill: Compiling Agent Experience into Persistent Knowledge for Skill Evolution
WikiSkill introduces a framework that co-evolves agent skills with a persistent knowledge base to systematically accumulate experience and improve performance across models, demonstrating benefits over state-of-the-art skill-evolution methods.