#2026-08-21 AI/LLM 最新论文与研究热点简报
覆盖窗口:截至北京时间 2026-08-21 08:00,重点覆盖 arXiv 2026-08-19 提交、8 月 20 日进入 recent/Hugging Face Papers 的新作;少量 8 月 18 日论文作为 48 小时内的重要补充。
检索与核验:逐项扫描 arXiv
cs.AI / cs.CL / cs.LG / cs.SE / stat.MLrecent 页面,下载并全文抽取 15 篇高相关候选;同时核对 Hugging Face Daily Papers API、GitHub API、项目页与 OpenAlex。arXiv API 本次超时,但 recent 页面、摘要页与 PDF 可访问。Google Scholar 返回 403;OpenAlex 精确查询后续返回 503;X/Twitter 搜索页要求登录且无法得到稳定、可审计的公开时间线,因此不引用无法核验的社交帖子。GitHub 新建仓库搜索噪声较高,repo 推荐以论文官方实现和实际目录结构为主。
#一、早读结论:今天最值得抓住的 7 个信号
- Agent 的持续学习对象正从参数扩展到 harness state:prompt、memory、skill、tool registry、router 都会积累能力,也都会遗忘;“冻结模型”不等于系统不会 catastrophic forgetting。
- 环境设计正在成为可学习的 self-play policy:SPADE 不再从固定题库采样,而是让 Environment Designer 写可执行 Gym 环境,以带/不带 privileged hint 的 regret 自动追踪能力边界。
- Skill selection 是长轨迹中被 broadcast reward 饿死的局部决策:SkillGate 将 skill-naming token 与后续 execution token 分开给 credit,直接命中长轨迹 credit assignment。
- Latent world model 的两个瓶颈被连续拆开:一条线学习“如何改进整段 action plan”(RP1),另一条线校准“latent cost 是否真的按现实进展排序”(Decision-Metric Alignment)。
- 持续 RLVR 的性能差距不只来自 forgetting:跨任务 shared reasoning 会产生正向 forward/backward transfer;简单地用当前 policy 在旧 prompt 上重采样,可能比复杂参数正则更有效。
- OPD 的 teacher likelihood 不是最终目标:长上下文越长,teacher 偏好与 verifier outcome 越容易分叉;新的方法开始用 group-relative disagreement residual 校准 dense token guidance。
- Code Agent 的 project-specific knowledge 可以在真实 issue 到来前主动预训练:SkillForge 从仓库测试覆盖的核心功能合成 issue,再把修复轨迹蒸馏成 entity-grounded skill;这是 agent pretraining data 从通用代码走向“仓库内执行分布”的具体路线。
#二、重点精读(Top 5)
#1. Harness Continual Learning:冻结模型之后,Agent 仍会在 harness 层遗忘
- 类别:
Continual Learning/LLM Agent/Memory/Tool-use/Harness - 标题:Harness Continual Learning: Continual Adaptation Beyond Model Parameters
- 来源与日期:arXiv:2608.19013;v1 2026-08-19,8 月 20 日 recent;Nanjing University / University of Wollongong
- 一句话核心贡献:把持续学习对象从模型参数改为联合版本化的 Task Interface、Experience Memory、Capability Map、Adaptive Router,并通过“提案—评估—提交”控制 harness 更新的可塑性与历史能力保持。
为什么值得关注?
过去常把外部 memory / skill 当成解决遗忘的手段,这篇反过来指出:这些组件本身也是会相互干扰的可学习状态。一次 memory 更新可能改变旧任务检索到的证据;一次 skill 修订可能破坏原有工具调用;一次 routing 修改可能让旧工作流失效——即使 foundation model 完全冻结。
论文提出 guarded harness evolution:Continual Optimizer 根据执行反馈生成候选 harness,Continual Evaluator 同时检查当前任务提升、历史任务 retention 和 validity,只有满足预算才 commit。ALFWorld 上,静态 harness 最终平均 47.12,RAG 55.56;偏稳定的 HCL 达 61.74、平均 forgetting 2.64,偏可塑的 HCL 达 62.98、但 forgetting 增至 10.94,清楚展示了 harness 层的 stability–plasticity trade-off。
与 wenjun 方向的关系:
- 对 self-evolving Code Agent,版本化对象不应只有 model checkpoint,还应包括 prompt、memory schema、skill、router 和 tool contract;
- 对 model-based RL,可把整个 harness 看成慢时间尺度的可学习状态,把一次 harness update 视为高层 action;
- 对长轨迹 Agent,历史 retention set 类似 continual RL 中的 replay buffer,但评估单位是完整行为与执行结果,不只是 loss。
研究判断与边界:论文证明了 harness-level forgetting 存在,并给出通用 commit protocol,但 evaluator 成本会随历史能力集合增长。真正可扩展的问题是:怎样选最小 retention probes、怎样定位“哪个 harness component 导致回归”,以及能否学习 update 的影响模型,而不是每次全量回归测试。
#2. SPADE:让 Agent 自己写可执行训练环境,并用 regret 追踪能力边界
- 类别:
LLM Agent/Post-training RL/Self-evolution/Environment Design/Tool-use - 标题:SPADE: Self-Play in Adaptive Synthetic Executable Environments
- 来源与日期:arXiv:2608.19197;v1 2026-08-19;UW / Meta / CMU 等;HF Papers 8 月 20 日榜单
- 代码与项目页:spade-rl/spade · Project
- 一句话核心贡献:同一 LLM 分别扮演 Environment Designer 与 Reasoning Agent;前者从大规模预训练语料取材,生成带
reset()/step()、状态转移、奖励与 verifier 的长轨迹可执行环境,并根据 privileged hints 引起的 regret 调整难度。
为什么值得关注?
固定题库的 self-play 很快会饱和,静态 synthetic generator 也不会随 learner 变强。SPADE 把 environment design 本身纳入学习闭环:
- Designer 从预训练语料文档中获取知识 grounding;
- 输出完整、可验证的环境代码,而不是一段自然语言题面;
- Agent 分别在有/无 privileged hint 下运行,二者 reward gap 估计 learning potential / regret;
- Designer 用该信号追踪“可解但还没掌握”的能力前沿;
- 累积 environment memory,避免重复生成并形成 emergent curriculum。
30B 规模下,SPADE 相对最强固定环境基线在 8 个 held-out 数学、科学、代码与推理 benchmark 上平均 +5.3;BFCL-v4 multi-turn +5.7,ACEBench-Agent +13.9。全文消融还强调:文档 grounding、环境 memory、hint-based regret、环境验证与 reward-hacking 防护都很关键。
与 wenjun 方向的关系:这几乎直接命中“通过环境设计催生自演化智能”。对于 Code Agent,可让 Designer 根据真实 repo/API 文档写最小可执行任务;对于 Dreamer-like LLM Agent,可进一步训练 environment/world model 预测什么任务最能产生 policy improvement,而不只估计当前 regret。
研究判断与边界:Designer 和 Agent 同源时会有共谋、模板化与共享盲点风险;“可执行”也不等于任务分布真实。下一步应研究跨模型 designer、反共谋 verifier、真实环境校准,以及 environment novelty 与可迁移能力增益之间的因果关系。
#3. SkillGate:skill 选对了但后面执行失败,不该把选择本身一起惩罚
- 类别:
LLM Agent/Agentic RL/Credit Assignment/Skill Learning/Long-horizon - 标题:SkillGate: Training In-Policy Skill Selection in Long-Horizon Agents
- 来源与日期:arXiv:2608.18852;v1 2026-08-19;Shanghai Jiao Tong University 等;HF Papers 8 月 20 日榜单
- 代码:DeepExperience/SkillGate
- 一句话核心贡献:发现 sequence-level advantage 对少量 skill-naming tokens 形成 selector credit starvation,并把选择与执行划为两个互斥 credit channel:局部选择 advantage 只更新技能名 token,outcome advantage 只更新 execution tokens。
为什么值得关注?
在长轨迹中,选择 skill 的 token 只占极小比例,loss mass 会随 horizon 墁释;更糟的是,即使 skill 选对,后续执行偶然失败,broadcast outcome reward 仍会给选择 token 错符号。SkillGate 用 rollout-time span attribution 精确标出 skill selection token,并对 single-read setting 构造 action-local utility。
在 16 个候选 skill、5 个 agentic benchmark 上,9B policy 的 trial success 从 SFT 初始化的 40.8% 提升到 53.2%;同预算 outcome-only RL 为 47.0%。误导 skill 暴露减少约三分之二,同时读取更少 skill。
与 wenjun 方向的关系:这提供了长轨迹 Agent credit assignment 的一个极干净案例:不是所有 token 都应共享同一个 advantage。对层级 Agent,可把 plan / skill select / tool action / argument / reflection 都看成不同 action type,分别定义支持集和局部 counterfactual credit。
研究判断与边界:当前 single-read + known-correct-skill 的 oracle utility 便于隔离问题,但真实任务常需多 skill、组合顺序与动态回退。值得扩展为 set/order-sensitive credit,或用 world model 估计“若换一个 skill,后续成功概率如何变化”。
#4. Reinforced Planning:不只学世界模型,还要学会如何迭代改进整段计划
- 类别:
Model-based RL/Latent Reasoning/World Model/Planning - 标题:Reinforced Planning with Latent World Models
- 来源与日期:arXiv:2608.18669;v1 2026-08-19;Pantheon Industries
- 一句话核心贡献:RP1 在冻结的 latent world model 上,用 offline TD 学 goal-conditioned critic,再学习一个反复修改完整 multi-step action plan 的神经优化器,而不是依赖 CEM/MPPI/梯度下降或只训练 amortized policy。
为什么值得关注?
Dreamer 类方法主要用 imagined rollout 训练 policy;MPC 方法通常保留手写 optimizer。RP1 分离了三件事:
- world model 负责“执行这段计划会到哪里”;
- critic 负责“imagined terminal state 离目标还有多远”;
- learned planner 负责“应该怎样修改整段 action sequence”。
RP1 可附着在不同 pretrained latent world model 上,在 TwoRoom、Reacher、OGBench Cube 中仅用每次决策 9 次 world-model rollout,对比最强传统方法的 9,000 次;论文报告最高 67× 并发规划加速。多项设置达到接近满分,并优于手写搜索。
与 wenjun 方向的关系:这是“Dreamer for LLM Agent”的强参考架构。LLM Agent 中可把自然语言/工具 action chunk 看成 plan,world model 模拟环境与 harness state,learned planner 在 latent 里迭代修订 plan;关键是训练的不是一次性 policy,而是 plan update rule。
研究判断与边界:实验仍是视觉控制而非语言 Agent,action space 连续且环境更规整。迁移到 LLM Agent 的难点包括离散/结构化 action、可变计划长度、模型误差累积、外部工具不可逆性,以及 critic 是否能对开放式任务给稳定的 reachability estimate。
#5. Harness Continual Learning 与 Continual Reasoning Gym:持续学习出现“系统层 + 参数层”双时间尺度
- 类别:
Continual Learning/RLVR/Post-training RL/Reasoning - 标题:Continual Reasoning Gym: Diagnosing and Harnessing Shared Reasoning in Continual RLVR
- 来源与日期:arXiv:2608.18574;v1 2026-08-19;Peking University / BIGAI 等
- 一句话核心贡献:构造 5 条文本与视觉推理任务序列,发现 sequential RLVR 的 forgetting 并不严重,但仍落后 joint multitask RLVR;剩余差距来自每阶段学习与跨任务 transfer,Continual Prompt Replay 是平均唯一达到 MTRL 水平的方法。
为什么值得关注?
传统 continual learning 习惯把性能差距全归因于 forgetting。本文做了分解:最终表现还取决于新任务学得多好,以及旧任务训练是否给未来任务提供 transferable reasoning structure。作者用 task-gradient alignment 和行为案例支持 shared reasoning,再用 CPR 把一部分当前任务 prompt 替换为旧 prompt,但答案由当前 policy 重新 rollout,而不是 replay 旧离策略响应。
与 wenjun 方向的关系:
- 对持续 RLVR / Code Agent,新 API、新 repo、新 verifier 持续到来时,不必每次重跑全量 multitask RL;
- current-policy replay 保持 on-policy,同时可测试旧任务是否已转化为更通用的 reasoning skill;
- 与 HCL 合起来看,Agent 需要两层 continual learning:快层更新 memory/skill/router,慢层更新参数;二者各有 forgetting,也会相互补偿或干扰。
研究判断与边界:今天最值得形成的统一视角不是“参数 CL vs memory CL 二选一”,而是 双时间尺度 continual agent:哪些经验应快速写入 harness,哪些应通过 RLVR consolidate 到参数,以及何时从外部 skill 编译进内部 policy。
#三、其他高相关论文与热点动态
#6. Decision-Metric Alignment:probe 能读出状态,不代表 latent cost 会把好计划排在前面
- 类别:
Model-based RL/Latent Reasoning/World Model/Evaluation - 标题:Decision-Metric Alignment in Latent World Models: Diagnostics and Action-Conditioned Objectives for MPC Planning
- 来源与日期:arXiv:2608.18746;v1 2026-08-19;HF Papers 8 月 20 日榜单
- 一句话贡献:提出 Plan-Real Spearman 与 CEM-stage Spearman,直接测 latent distance 与真实任务进展对候选计划的排序一致性;用 inverse dynamics 和 demonstration-conditioned goal-action heads 改善 planner-facing geometry。
这是昨天 SCALE 的直接续篇式信号:state probe、action probe 相近时,Plan-Real Spearman 仍可从 0.280 升到约 0.41,online success 从 49.3% 跨到 92.7%。对 latent reasoning,应把“信息存在”“信息可读”“信息真正改变 action ranking”分开评测。
#7. GC-OPD:用 teacher–verifier disagreement residual 校准长上下文蒸馏
- 类别:
Post-training RL/On-policy Distillation/Long Context/Credit Assignment - 标题:Beyond Teacher Likelihood: Group-Calibrated On-Policy Distillation for Long-Context Reasoning
- 来源与日期:arXiv:2608.19181;v1 2026-08-19;Tsinghua / BUPT / OpenBMB
- 代码:SolereZhang/GC-OPD
- 一句话贡献:分别对 rollout group 内的 verifier reward 与 trajectory OPD score 标准化,以差值作为带符号 disagreement residual,再按 token 的 relative OPD advantage 分配校正量。
输入越长,teacher 可能偏爱局部流畅但漏掉分散证据的答案。五个 long-context benchmark 上,Qwen3-4B 平均从 29.08 到 40.47,Qwen3-8B 从 35.12 到 44.65;同设置 vanilla OPD 为 39.31 / 43.56。意义在于:保留 teacher 的 dense guidance,但明确承认它只是一个偏好模型,不是最终 verifier。
#8. Co-RL:用异构 cohort 降低 self-reward 的相关错误与训练坍缩
- 类别:
Post-training RL/Multi-Agent/Reasoning/Self-training - 标题:Co-RL: Unsupervised Reasoning Emerges from Diverse Cohort in Multi-agent RL
- 来源与日期:arXiv:2608.17253;v1 2026-08-19;HF Papers 8 月 20 日榜单(本次核验 84 upvotes)
- 代码与项目页:DrStranded/Co-RL · Project
- 一句话贡献:多个不共享参数的模型相互提供 reward;通过模型家族、规模和 prompt rephrase 增加 cohort diversity,降低 self-reward 中的 correlated errors。
七个文本 benchmark 平均增益 3.0–8.6%,四个多模态 benchmark 为 2.3–7.2%,不依赖 ground-truth label。值得注意的核心不是“多 Agent 投票”,而是把 error correlation 当作 self-training 是否会坍缩的关键变量。
#9. SkillForge:在真实 issue 来之前,从 repository 自身预蒸馏 project-specific skill
- 类别:
Code Agent/Self-evolution/Agent Pretraining Data/Continual Learning - 标题:SkillForge: Self-Distilling Agents for Project-Specific Issue Resolution
- 来源与日期:arXiv:2608.18933;v1 2026-08-19;Shanghai Jiao Tong University
- 一句话贡献:从测试覆盖的核心功能与执行路径合成 project-specific issues,让 Agent 修复后把成功/失败经验蒸馏成全局诊断 skill 与绑定 repository entity 的局部 intervention skill。
论文报告,相对 Mini-SWE-Agent,DeepSeek-V3.2 / GPT-5 mini 在 SWE-bench Verified 分别 +5.8 / +5.6,在 SWE-bench Pro +5.8 / +4.1。这比单纯读取历史 PR 更主动,也比每个真实 issue 临时探索更可摊销。
#10. SemaPLC:Code Agent 的完成条件必须由真实 runtime 外部确认
- 类别:
Code Agent/Evaluation/Verification/Tool-use - 标题:SemaPLC: A Project-Grounded, Verification-Gated Agent Harness for PLC Code Generation
- 来源与日期:arXiv:2608.18565;v1 2026-08-19;HF Papers 8 月 20 日榜单(本次核验 110 upvotes)
- 代码:midea-ai/SemaPLC
- 一句话贡献:只有 specification、编译和真实 PLC runtime 执行轨迹三层外部检查全部通过才允许完成;117 个独立 POU 任务上 7 模型平均 strict pass 72.6%,项目集成任务 dynamic score 52.2,而基线为 22.4–31.4。
这是一个可迁移到通用 Code Agent 的原则:静态单测、编译、self-judge 都可能无法覆盖真实运行语义,尤其在工业控制、分布式系统、GPU kernel 等场景。
#11. FM-Bench:20 年、约 340–400 次决策揭示 Agent 并不会从反复失败中学出隐含市场模型
- 类别:
LLM Agent/Long-horizon/Evaluation/Memory - 标题:FM-Bench: A Benchmark for Long-Horizon Management with Competing Agents
- 来源与日期:arXiv:2608.18423;论文标注 2026-08-18,8 月 20 日 HF Papers 可见
- 代码:Analogy-AI/fm-bench
- 一句话贡献:让 Agent 用 26 个工具经营足球俱乐部 20 个赛季,并提供 deterministic final score 与 shared-world arena;15 个模型都能走完整条 horizon,但无人从数百次 rejected bids 学会隐藏价格。
高分模型的优势来自提早续约、现金利用、末期减少慢回报投资等行为,而不是 token spend。self-managed memory 两极失败:要么只增不删的档案,要么每季重写计划。这是 model-based RL / belief update 很好的长轨迹诊断场。
#12. LEGO-RL 与 Agent Lightning v1.0:harness-native Agentic RL 正形成可复现实验栈
- 类别:
Code Agent/Agentic RL/Systems/Post-training RL - 标题:LEGO-RL: Harness-Native Reinforcement Learning for Coding Agents · Agent Lightning v1.0: Towards Harnessed Agentic RL
- 来源与日期:arXiv:2608.17393 / 2608.17528;v1 2026-08-18,8 月 19–20 日 HF Papers 持续可见
- 代码/文档:LegoX/Lego-RL · Agent Lightning
- 一句话贡献:二者都让 deploy-time harness 保持控制环境 loop,训练端通过模型 endpoint proxy 获取碎片 request/response;重点处理 retokenization、log-prob 重算、compaction、sample merging、sandbox、reward hacking 与训练可观测性。
LEGO-RL 用 Qwen3.5-35B-A3B + GSPO,在 OpenHands SDK / Claude Code / OpenCode 上分别从 64.0→70.4、62.4→68.2、57.2→66.6,并保持 rollout-training probability correlation >0.99。Agent Lightning v1.0 约 3,500 行代码,用 6K 训练样本将 Qwen3.5-9B 的 SWE-bench Verified 从 41.8→56.4。相比再写一个定制 RL loop,这类框架更适合做可复现 credit assignment 与 harness ablation。
#13. Agentic ESOpt:长 horizon 下,trajectory-level parameter attribution 可能比 token credit 更省栈
- 类别:
LLM Agent/Post-training/Evolution Strategies/Long-horizon - 标题:Agentic ESOpt: Fine-Tuning Long-Horizon LLM Agents with Minimal GPU Requirements
- 来源与日期:arXiv:2608.17310;v1 2026-08-18;HF Papers 本次核验 96 upvotes
- 代码与项目页:zz1358m/Agentic-ESOpt · Project
- 一句话贡献:采样参数扰动、以完整 Agent return 做 reward-weighted update,避免反向传播栈与逐 token credit;还能把参数更新和 prompt/skill evolution 组合。
WebArena-Lite 上,Qwen3.5-27B full-parameter ES 相对 no-skill baseline 提升 6.69%;自动 heuristic 设计中,prompt–parameter co-evolution 在 36 个设置中赢 28 个。代价是 parameter-space sampling 的方差与 rollout 成本,需与 PEFT、low-rank perturbation 和 learned surrogate 搭配评估。
#四、今日最值得精读的 3 篇
- SPADE:最贴近“通过环境设计催生自演化智能”;重点看 executable environment、hint-regret、environment memory、reward hacking 防护。
- SkillGate:最贴近长轨迹 Agent credit assignment;重点看 token support partition,以及为什么 broadcast sequence advantage 会给 selector 错符号。
- Reinforced Planning with Latent World Models:最贴近 model-based RL / latent planning;重点看 world model、critic、learned plan optimizer 三者如何解耦。
强烈候补:做 self-evolving Agent 系统时,把第 3 篇换成 Harness Continual Learning;做 latent representation 因果评测时,换成 Decision-Metric Alignment。
#五、今日最值得跟进的 3 个 repo / model / dataset
- Repo — spade-rl/spade:GitHub API 核验含
spade/、tests/、eval_configs/、训练脚本与 Slime/Tinker 接口,不是论文占位页;最适合复现 adaptive executable environment self-play。 - Repo — DeepExperience/SkillGate:仓库含
skillrl/、skill libraries、环境与训练栈;适合直接检查 selection span attribution 和双 credit channel 的实现。 - Repo / Benchmark — Analogy-AI/fm-bench:含 engine、runner、baselines、data 与可运行 benchmark;适合做长期 belief update、memory lifecycle、model-based planning 和竞争型 multi-agent 实验。
工程复现候补:LegoX/Lego-RL 已包含 src/scripts/webui/docs,适合做 harness-native Code Agent RL;midea-ai/SemaPLC 适合研究 verification-gated completion 和真实 runtime evaluation。
#六、研究机会 / Idea
#Idea 1:Two-Timescale Continual Agent——harness 快适应,参数慢巩固
把 HCL 与 Continual Reasoning Gym 合并成两层学习系统:
- 快层:把一次经验写入 memory、skill、router,低成本立即生效;
- 慢层:定期从 harness 中选择高复用、低冲突的经验,经 on-policy RLVR / OPD consolidate 进参数;
- 提交门:同时测当前能力、历史 retention、harness–parameter consistency;
- 删除门:当知识已被参数内化,判断外部 skill 是否可压缩/归档。
关键研究问题:什么指标能预测一条外部经验“值得内化”?参数更新后如何检测旧 skill 变成冗余、冲突或过时?
#Idea 2:World-Model Counterfactual Credit for Hierarchical Agent Actions
把 SkillGate 的局部选择 credit 推广到多层 action type:
intent → plan → skill selection → tool call → arguments → observation interpretation → memory update。
训练一个 world model,在共同前缀下替换某一层 action,预测后续 reachability、执行成本与失败模式;对每个 action type 计算局部 counterfactual advantage,而不是把 terminal reward 广播给整条 token 序列。FM-Bench 可作为长时域可控试验场,Code Agent 可用 acceptance tests 做真实校准。
#Idea 3:Learned Environment Designer × Learned Plan Optimizer 的协同课程
SPADE 学“出什么环境”,RP1 学“怎样改进计划”。可以把两者组成双层博弈:
- Designer 生成能暴露 planner 更新规则缺陷的 executable environment;
- Planner 在 world model 中迭代修订 structured plan;
- curriculum reward 不只用最终 regret,还加入 plan-improvement slope、world-model uncertainty、transfer 到 held-out environment 的增益;
- 用不同模型家族担任 designer/verifier,降低同源共谋。
这条线可能比单纯扩充静态 Agent benchmark 更接近 open-ended model-based LLM Agent。
#七、今日研究判断
今天的论文形成了一条非常连贯的链:
自演化 Agent 不再只是“用 RL 更新一个语言模型”,而是要共同学习环境分布、harness state、局部技能选择、latent planning geometry 与 plan update rule。
- SPADE 学习“接下来应该创造什么训练世界”;
- HCL 学习“模型外部的长期系统状态怎样更新而不遗忘”;
- SkillGate 学习“长轨迹中的局部决策怎样拿到正确 credit”;
- Decision-Metric Alignment 保证 latent cost 真能区分好坏计划;
- RP1 再学习“如何迭代改进整段计划”;
- Continual Reasoning Gym 则提醒,参数层更新的价值不仅是保持旧任务,还包括抽取跨任务共享 reasoning structure。
对 wenjun 当前主线,我最看好的交叉问题是:
构建一个双时间尺度的 Dreamer-like LLM Agent:快层持续演化 harness 与环境课程,慢层用 world-model counterfactual credit 把可迁移技能巩固到参数;latent state 的好坏不看 probe,而看它是否因果改变 plan ranking 与 plan update。