SentientAGI EvoSkill v2:智能体自写技能,记忆需版本管理

Rohan Paul · @rohanpaul_ai · X·2026-09-18 23:48·3小时前
AI 导读

SentientAGI 推出 EvoSkill v2,让智能体从失败任务中写出可复用技能,模型权重不变、学习发生在权重之外,无需重新训练。其机制是教练读取任务失败、编写更优流程,worker 下次遇到类似任务时检索该流程。

Rohan Paul@rohanpaul_ai
41AI 编辑部评分,满分 100

SentientAGI EvoSkill v2:智能体自写技能,记忆需版本管理

2026-09-18 23:48· 3小时前
AI 导读

SentientAGI 推出 EvoSkill v2,让智能体从失败任务中写出可复用技能,模型权重不变、学习发生在权重之外,无需重新训练。其机制是教练读取任务失败、编写更优流程,worker 下次遇到类似任务时检索该流程。

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.

SentientLast 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 ...