跳到正文
Jones Ray

ScholarPulse 日报 2026-08-29

2026-08-29 学术简报:2 篇。Persona-Execution Separation (PES) 架构模式有效解耦了LLM代理的人格演化与执行可追溯性。

今日速览

序号标题来源日期主题推荐等级
1Persona-Execution Separation: An Architecture Pattern for Evolving LLM Agents under Execution AuditarXiv2026-08-27AI-Agent高
2Verify Smarter, Evolve Further: Efficient Harness Evolution through Behavior-Aware VerificationarXiv2026-08-27RAG高

重点论文与技术动态

1. Persona-Execution Separation: An Architecture Pattern for Evolving LLM Agents under Execution Audit

一句话结论

Persona-Execution Separation (PES) 架构模式有效解耦了LLM代理的人格演化与执行可追溯性。

一段话。在受控组织中,LLM代理需自由演化人格(如指令、语气),同时确保执行过程可审计。PES通过将人格置于可漂移的单一信任域、执行置于需审计的受限制域,并以受控合约桥连接,实现自由漂移、执行可追溯和解耦,避免单信任域机制的高成本问题。

核心内容

方法与数据

价值判断

摘要 Large language model (LLM) agents in governed organizations must let the persona (instructions, tone, self-presentation) evolve freely, while keeping execution (stateful, audited work) traceable. A single trust domain does not satisfy both cheaply. We present Persona-Execution Separation (PES): persona and execution reside in different trust domains, connected by a governed contract bridge. The persona is singly-homed and may drift; execution is faceless and audited. Status summaries may return; data bodies remain in the restrictive domain except a graded data-loss-prevention (DLP) exception; identity stays continuous. An approval matrix, DLP, and audit enforce the crossing. PES follows from three goals---free drift, execution traceability, and decoupling. Under LLM representational indistinguishability, any single-domain mechanism that meets all three must re-introduce typed change objects, an external gate, and a stable audit anchor: PES rebuilt at higher coupling cost. A development/pilot case in a regulated digital-employee platform records five decisions over one month, each with a rejected alternative. A mechanism check on the shipped implementation found no execution-side re-validation under persona perturbation (five model configurations) and no persona fingerprint on hard-asserted fields. A probe of a recovered pre-separation build found the governed execution path decoupled from the persona by omission, not by construction; a later wiring change could reverse that isolation, which PES makes an audited architectural rule. The pattern applies when multi-user deployment, execution audit, and expected persona churn hold jointly.

2. Verify Smarter, Evolve Further: Efficient Harness Evolution through Behavior-Aware Verification

一句话结论

行为感知验证结合显式归因能实现更可靠且样本高效的agent harness进化。

核心内容

方法与数据

价值判断

摘要 Agent harnesses shape how language-model agents use instructions, tools, and runtime components, but adapting these harnesses requires costly verification. Existing propose-and-verify methods typically score every candidate on a fixed task set, wasting rollouts on unrelated behaviors and allowing aggregate scores to obscure specific regressions. We introduce HarnessLens, a budget-aware framework for automated harness evolution. HarnessLens jointly explores the task space and user-configurable components, derives candidate modifications from execution trajectories, and selectively verifies each candidate on behavior-relevant tasks using an attributable-evidence gate. Across three agent harnesses and four benchmarks, HarnessLens improves average held-out performance by 7.6-13.6% while consuming substantially less evaluation budget than competing baselines. These results demonstrate that behavior-aware verification with explicit attribution enables more reliable and sample-efficient harness evolution under constrained interaction budgets. Our code is available at https://github.com/jhxu5214/HarnessLens.