# MSCE：将智能体记忆转化为可调用技能

- 来源：Rohan Paul (@rohanpaul_ai)
- 发布时间：2026-07-26 23:29
- AIHOT 分数：39
- AIHOT 链接：https://aihot.virxact.com/items/cms1zaakv00q3ro9f1v5hh5ht
- 原文链接：https://x.com/rohanpaul_ai/status/2081401405320130904

## AI 摘要

论文指出多数智能体记忆系统仅保存事件并重新推理，导致重复错误。MSCE 提出将经验组织为声明性事实、诱导性策略和步骤轨迹三层，并将重复模式提升为可调用程序（如 pip 安装失败时自动执行修复规则）。一项策略只有在拥有自身触发条件、边界、正向收益估计和支撑证据时，才成为可调用技能，无需额外微调。

## 正文

Most systems of agent memory will return wrong answers. They keep the events， pull them back as context and re-reason the model by the same decision.

The paper's claim is that saving notes and having procedures are different things， and most systems only do the first.

MSCE sees this as a governance issue. Experience is organized in three levels： declarative facts about the environment， induced procedural policies and grounded step traces.

Agents save transcripts， then reread them and re-derive the same lesson each time.

MSCE instead promotes recurring patterns into callable procedures， but only if the evidence holds up.

e.g. Pip fails in a container？ Don't recall the incident； run the rule. when a pip install fails in a container because a system library is missing， find the OS package manager， install the dev package， retry. That rule is now a thing the agent can call， not a memory it has to interpret.

A policy qualifies as a callable skill only when it has its own trigger and boundary， a positive estimated gain， and supporting evidence. No further fine-tuning is performed.

- arxiv. org/abs/2607.16621

Title： "From Memory to Skills： Evidence-Grounded Co-Evolution Governance for Long-Horizon LLM Agents"
