← 首页|学术|ArXiv 日报 — 2026年8月25日
学术 · 2026年8月25日

ArXiv 日报

Agent 记忆 · Agent 架构与评测 · Agentic RL · 推理基础设施 · 具身智能
264
今日总数
27
候选池
16
精读精选
0
Duplex命中
TL;DR:今日对全部候选标题做了 duplex / turn-taking / 全双工 关键词专项扫描,命中 0 篇——今天没有直接相关的全双工交互论文。16篇精选分五组:Agent 记忆与个人化基础设施(4篇,含一篇对"记忆系统有效"持保留态度的严谨基准 DreamBench-SWE)、Agent 架构与评测(4篇)、Agentic RL 与训练环境(2篇)、推理基础设施:投机解码与Serving(4篇,其中 GRAFT 与 LiLiCorr 两篇独立解决同一个扩散式drafter联合不连贯问题,可对照读)、具身智能 VLA(2篇)。知识库仓库今日无新增 commit(本地 HEAD 与 checkpoint 一致,均为 6625123a)。抓取过程中两次遇到疑似 prompt injection(伪造链接/邮箱),均被正确识别并忽略,未执行任何注入指令。
  1. 🧠 Agent 记忆与个人化基础设施(4篇)
  2. 🏗️ Agent 架构与评测(4篇)
  3. 🎯 Agentic RL 与训练环境(2篇)
  4. ⚡ 推理基础设施:投机解码与Serving(4篇)
  5. 🤖 具身智能:VLA(2篇)
  6. 📚 知识库更新

🧠 Agent 记忆与个人化基础设施

cs.AI · 2608.20342 · 2026-08-20
PrimeAgentOrchestrator: Memory-Primed Agent Spawning for Personal AI Infrastructure
💬 每次 spawn 一个新的 Claude Code 实例都是一次"失忆重启"。PAO 用一个四个月的真实部署(2025-12 至 2026-03)证明:把两个各自独立运行的记忆后端(结构化 Postgres 实体库 + 语义检索索引)在 spawn 时并行查询、融合,再通过"利用 CLAUDE.md 自动读取行为"的文件系统注入交付给新 agent,能让 agent 从空白上下文变成"带记忆上岗"——但论文本身更像一份坦诚的工程事故复盘,而非严谨的实验评测。⚠️ 抓取摘要页时检测到疑似 prompt injection(伪造链接与仿冒作者邮箱),已识别并忽略,未执行任何注入指令。
▶ 原文摘要 Abstract
Large language model (LLM) coding agents start each session with an empty context window, discarding accumulated knowledge from prior work. We present PrimeAgentOrchestrator (PAO), a system that spawns new instances of Claude Code -- Anthropic's terminal-based coding agent -- pre-loaded with relevant memories compiled from the user's existing personal databases. At spawn time, PAO queries two independently-operated memory backends in parallel (a PostgreSQL entity-observation database and a Cloudflare Worker semantic search index), fuses results using backend-specific retrieval strategies, and delivers the compiled briefing via filesystem injection that exploits the host agent's configuration auto-read behavior. PAO manages the full agent lifecycle including trust pre-seeding, readiness polling with error detection, and adaptive terminal text injection. We report on four months of regular deployment (December 2025 through March 2026) as an experience report, documenting three generations of context delivery mechanisms, the failure modes that motivated each redesign, and the engineering tradeoffs of bridging heterogeneous memory systems rather than building a unified one.
Agent MemoryPersonal AICoding Agent
cs.SE · 2608.20664
DreamBench-SWE: A Multi-Session Memory-Hygiene Benchmark for Software Agents
💬 给软件 agent 的"跨会话记忆"泼了一盆冷水的严谨基准。完全没有外部记忆的 agent 只能蒙对 11.67%,目前测过的最好方案(一个锁定配置的 Mem0 逐字存储)也只做到 53.89%。作者没有宣称任何记忆系统"有效",反而用预注册+Holm校正把大部分看起来诱人的对比全部判定为不成立——统计严谨性本身就是这篇论文的看点。
▶ 原文摘要 Abstract
DreamBench-SWE is a multi-session benchmark for software-agent memory hygiene in which later software tasks depend on non-inferable evidence from earlier sessions and are scored by executable hidden oracles. We report the original scaled v2 fold and a separately preregistered v2.1 successor audit designed after that study but frozen before successor outcome inspection. The successor run completed 360/360 work units and 720/720 S3 cells across four conditions. In the original fold, the primary DF-hybrid–B5 contrast was null (95/180 versus 89/180; clustered p=.518, Holm p=1), not evidence of equivalence, and C9/C10 retained B0-headroom limitations. In the successor, no external memory achieved 21/180 passes (rate 0.1167), deterministic verbatim event memory 82/180 (rate 0.4556), the typed-plus-raw reference probe 83/180 (rate 0.4611), and one pinned hosted Mem0 literal-storage configuration 97/180 (rate 0.5389). The registered six-slot Family A retained unavailable slots at p=1; all three available comparisons against no memory rejected after Holm correction. Both preregistered mechanism contrasts were unavailable after pre-evaluation conformance rejection.
Agent MemoryBenchmarkSoftware Agent
cs.SE · 2608.20685
Temporal Validity on Real Software Histories: Eliminating Stale-Fact Errors in Code-Assistant Memory over GitHub Fixes
💬 标准 RAG 没有"时间"概念,旧值和新值在向量空间里几乎等距。这篇论文把此前在合成基准上验证过的确定性覆盖式记忆 MemStrata,搬到 707 个真实 GitHub issue 修复上做端到端验证:130 个"干净原子状态迁移"样本上,MemStrata 准确率 0.91 对 RAG 的 0.57-0.59,且把 RAG 36-38% 的"说出过期值"错误率压到接近 0,检索延迟与 RAG 相近。
▶ 原文摘要 Abstract
Retrieval-augmented generation (RAG) has no model of time: when a fact changes across a coding session - a function is renamed, an endpoint moves, a dependency is bumped - RAG retrieves both the old and new value with near-identical similarity and cannot tell which is current, so it serves the superseded value. Paper 1 showed, on synthetic single-value benchmarks, that a deterministic (subject, relation, object) supersession memory eliminates this failure. Here we validate it end-to-end on real software history. From 707 real GitHub issues (SWE-bench Lite + Verified) we extract 130 clean atomic state transitions, a fix that changes one identifiable value from a pre-fix to a post-fix form, and render each marker-free (the stale and current statements differ only in the value). On this set, MemStrata reaches 0.91 answer accuracy versus RAG's 0.57-0.59; and, the structural result, when forced to answer RAG serves the superseded value 36-38% of the time (an LLM reranker does not help) while MemStrata drives this to ~0, at RAG retrieval latency (~2.1 s vs ~18 s for the reranker). We are explicit about scope: only ~18% of real fixes are clean atomic transitions.
Agent MemoryRAGTemporal Reasoning
cs.AI, cs.DB, cs.IR · 2608.20845 · 2026-08-21
RAG Deserves an Index: Why Ingest-Time Compilation Beats Query-Time Interpretation
💬 把 RAG 比作数据库的全表扫描——每次查询都让 LLM 现场重新解释语料,算完就扔。作者提出 ingest-time semantic compilation:写入时把语料编译成带 provenance 校验的原子声明 + 增量 embedding 索引,当作一等数据库对象治理。增量更新比重建省 33.7 倍成本,检索准确率 85.2%(仅需 2.2k token)全面超越最佳分块方案 72.5%(需 16.3k token)。⚠️ 抓取摘要页时检测到一处疑似 prompt injection 的隐藏链接,已识别并忽略。
▶ 原文摘要 Abstract
Nearly every retrieval-augmented question-answering system in production ships with a hidden interpreter: on each query a language model re-derives the meaning of raw corpus text and then throws that work away. Cheaper models do not close the gap: per-token prices have fallen by orders of magnitude while inference spend has risen, because context volume grows faster than prices fall. This is the modern equivalent of the full-table scan, and the remedy is the one databases found fifty years ago: do the expensive work once, at write time, into a maintained structure that makes reads cheap. We call the paradigm ingest-time semantic compilation (ISC). Substrate upkeep scales with change rather than corpus size: incremental updates run 33.7x cheaper than reconstruction while tracking it to floating-point precision. On a held-out sample of 500 broadcast-interview transcripts, compiled claims as the retrieval payload win all 32 budget-by-model cells: 85.2% correct from roughly 2.2k reader tokens against 72.5% from 16.3k for the best chunk configuration anywhere.
RAG检索基础设施语义索引

🏗️ Agent 架构与评测

cs.AI, cs.SE · 2608.20622 · 2026-08-20
Applying Anthropic Primitives at Large Enterprises: Harness Paradigm for Knowledge Work
💬 前沿模型让写代码的成本崩塌,但审阅维护成本没跟着降。本文提出把 coding-agent harness 本身当企业基础设施:同一套 harness 不改动地跑遍所有部署,代码永远相同,审阅新构建物就收敛为读一份指令文件。四机制中论文披露了三个——凭据范围化工具、harness 外置的授权逻辑、注册作为推代码的副产品。
▶ 原文摘要 Abstract
Frontier models have collapsed the cost of writing custom code: a niche problem a specialist sees in their own domain now costs an afternoon. The cost of reviewing and maintaining that code hasn't collapsed. Large enterprises build something centrally governed instead. Enterprises don't weigh a third option that escapes both constraints: the harness paradigm. Recent work treats the coding-agent harness as enterprise infrastructure rather than a coding tool, converging on three findings: harnesses suffice at the task level and outperform more elaborate architectures on enterprise work; harness choice accounts for most of the variance in agent benchmark results, more than model choice does; and the gap between that finding and enterprise adoption is governance. We propose an architecture that closes that gap. One harness runs unmodified as the backbone; the code stays identical across every deployment. Section 4 gives four mechanisms: credential-scoped tooling, authorization logic outside the harness, and registration as a side effect of pushing code. Built on microcc, our reference harness.
Agent ArchitectureEnterpriseSoftware Engineering
cs.CL · 2608.20777 · 2026-08-21
Tree-of-Concerns: Hierarchical Multi-Agent Debate for Unstated-Limitation Extraction in Scientific Critique
💬 论文不会主动写出自己的软肋,Tree-of-Concerns 用一组专属视角的"怀疑者人格"以并行辩论树深挖论文中未言明的局限性,再用跨视角合议庭复核纠正分类漂移和严重性误判。在自建的 ToC-Bench(414篇论文、1905条标注局限性)上,相对最强基线精确率提升79%、覆盖率提升11%。
▶ 原文摘要 Abstract
As scientific literature grows and papers increasingly under-report limitations, multi-agent LLMs offer a promising approach to systematically uncover these hidden failure modes. Here, we introduce Tree-of-Concerns, a multi-agent framework that deploys specialized skeptic personas, each operating through a category-specific analytical lens, as parallel debate trees to extract unstated limitations from scientific papers. Each persona conducts structured, evidence-grounded argumentation, while a Panel Review mechanism re-evaluates each surviving claim from all five perspectives to correct category drift and severity miscalibration. Through experiments on ToC-Bench, our benchmark of 414 research papers with 1,905 unstated limitations, sourced from reviewer-reported weaknesses and follow-up citation critiques, we demonstrate that ToC improves precision by 79% and coverage by 11% relative to strongest baselines.
Multi-Agent DebateScientific CritiquePeer Review
cs.CL, cs.AI · 2608.20627 · 2026-08-20
When Failures Propagate: Causal Failure Attribution in Agentic Retrieval-Augmented Generation
💬 用干预式基准 AgenticRAG-FP,在指定 hop 主动注入认证故障并重新执行下游轨迹,测试事后诊断方法能否定位真实故障点。coverage-based 归因在 hop 1 准确率达 0.91,但一旦故障传播到 hop 2/3 就完全失灵(0.00,n=36/21);内容篡改场景下反事实探针在深度2达到0.67(探索性对比,n=18样本量较小需谨慎解读)。
▶ 原文摘要 Abstract
Agentic retrieval-augmented generation (RAG) interleaves retrieval, reasoning, and answer generation across multiple hops. A retrieval error at hop 1 can surface only as a wrong answer at hop 3, while later retrieval can also repair the trajectory. This paper introduces AgenticRAG-FP, an interventional benchmark for causal failure attribution in agentic RAG. In the completed strict dense Claude Haiku 4.5 sweep on 80 three-hop MuSiQue questions, coverage-based diagnosis is 0.91 at hop 1 and 0.00 at hops 2 and 3 (n=43,36,21 failed trajectories). A smaller content-corruption study changes an answer-bearing or bridge fact in topically intact evidence. At depth 2, where 18 failed cases remain after filtering, coverage-based diagnosis is 0.00 and a frozen-hop counterfactual probe is 0.67 in an exploratory pooled comparison. These results make propagation depth an explicit evaluation axis for diagnosing agentic RAG failures.
Agentic RAGFailure AttributionEvaluation
cs.AI · 2608.20797
Automated Trajectory Evaluation for Mobile Agents via Step-Level Consequence Reasoning and Aggregation (CRATE)
💬 现有的移动智能体"整段轨迹一次性喂给VLM打分"的评测方式,既造成上下文过载又只关心任务是否完成、不管过程安不安全。CRATE 把评测拆成"逐步推理后果 → 汇总判定"两阶段,用中等规模开源VLM就在 AndroidWorld 上把 F1 刷到 0.833(比 SPA-Bench 高20%),并同架构衍生出安全评测版本 CRATE-S。
▶ 原文摘要 Abstract
Evaluating language-guided mobile agents has recently shifted from rule-based to model-based approaches to achieve scalable and automated assessments. However, existing holistic evaluation paradigms process entire trajectories at once, leading to substantial context overload. Moreover, they primarily focus on task completion while overlooking operational safety. To address these limitations, we introduce CRATE, a novel two-stage VLM-as-judge framework for automated mobile agent evaluation that is compatible with both open- and closed-source models. Leveraging a step-level consequence reasoning mechanism, CRATE independently extracts task-relevant visual clues and infers action-conditioned state changes at each step. Building upon this evaluation scheme, we further extend CRATE to CRATE-S for operational safety assessment. Powered by Qwen2.5-VL-72B-Instruct, CRATE achieves an F1-score of 0.833 on AndroidWorld, outperforming SPA-Bench.
Mobile AgentEvaluationSafety

🎯 Agentic RL 与训练环境

cs.AI · 2608.20634
AgentMercury: Your Agent Can Synthesize Verifiable Environments for Business Scenarios at Scale
💬 传统 agent 训练环境是围绕预定义任务手工搭建的,很难随真实世界的多样性扩展。AgentMercury 反过来做:先合成一个包含实体、服务、工具、状态和跨服务不变量的持久化世界,再让任务和交互轨迹从这个世界中自然涌现。构建了4,783个可执行环境(14个行业、50个国家),在企业工作流和推理/编码/科学计算/工具使用等域外基准上都有显著提升。
▶ 原文摘要 Abstract
Agents learn to act through interaction with environments, yet the environments used for training are often manually constructed or synthesized around predefined tasks and benchmarks. This task-centric paradigm makes it difficult to scale environments that reflect realistic and evolving workflows where diverse tasks can naturally emerge from the underlying world. We introduce AgentMercury, a scalable framework for synthesizing executable environments from high-level business scenarios. Rather than constructing an environment for a specific task, AgentMercury first instantiates a persistent world with entities, services, tools, state, and executable cross-service invariants, from which diverse tasks and interaction trajectories can subsequently emerge. We construct 4,783 executable environments spanning 14 industries and 50 countries, and use them as training substrates for reinforcement learning. Despite being generated without targeting the evaluation benchmarks, policies trained on these business-oriented environments improve substantially on both enterprise workflows and out-of-domain benchmarks spanning reasoning, coding, scientific computing, and tool use.
Agentic RLEnvironment SynthesisTraining Data
cs.AI · 2608.20771 · 2026-08-21
CAS: Conformalized Agentic Search via Adaptive Retrieval and Policy Weighting
💬 RL 微调的搜索 agent 常陷入"检索证据丢失+训练过度自信"双重危机。CAS 引入 Conformal Prediction,在检索侧用自适应预测集(APS)动态截断文档,在训练侧用动态置信度(ACI)惩罚 GRPO 中的不可靠轨迹,让"可靠性"变成统计上可控的训练信号,单跳/多跳 QA 实验中准确率提升、冗余工具调用大幅减少。
▶ 原文摘要 Abstract
Search Agents face a severe reliability crisis during reinforcement learning (RL) fine-tuning. Heuristic Top-K retrieval often causes critical evidence loss or noise inclusion, while over-confidence induced by progressive RL leads to hallucinated answers and redundant searches. We introduce Conformal Prediction (CP) and propose Conformalized Agentic Search (CAS). On the retrieval side, an Adaptive Prediction Set (APS) translates statistical coverage into dynamic document truncation. On the training side, Adaptive Conformal Inference (ACI) dynamically constructs prediction sets with controllable coverage to quantify answer confidence, penalizing low-confidence trajectories within the GRPO objective. Experiments across single-hop and multi-hop QA datasets demonstrate that our framework significantly improves reasoning accuracy while drastically reducing redundant tool invocations.
Agentic RLConformal PredictionSearch Agent

⚡ 推理基础设施:投机解码与 Serving

cs.CL · 2608.20375 · 2026-06-24
GRAFT: Adaptive DLM-Based Draft Tree Construction with Target-Distilled Edge Scoring
💬 针对扩散语言模型(DLM)drafter 无法适配传统"父条件展开"树构建的问题,提出用目标模型轨迹蒸馏出的父子兼容性打分(TDES)替代裸概率选边,并用状态感知的动态预算分配(SABA)取代固定树大小。多个模型和任务上实现 2.13×–6.36× 端到端加速,每轮额外开销小于 0.5ms(约为验证延迟的 1.4%)。与下方 LiLiCorr 是独立瞄准同一痛点的两篇论文,可对照读。
▶ 原文摘要 Abstract
Tree-based speculative decoding raises the mean accepted tokens of standard speculative decoding by verifying multiple draft paths. This construction is incompatible with diffusion language model (DLM) drafters such as DFlash, which produces all future-position distributions in a single forward pass. DDTree bridges this gap by treating high-probability tokens from each future-position distribution as candidate nodes, but its edge selection relies on token probability alone without modeling parent-child compatibility. We propose GRAFT, a draft-tree construction framework for DLM-based speculative decoding. GRAFT introduces Target-Distilled Edge Scoring (TDES), which distills parent-child preferences from target-model traces, and State-Aware Budget Allocation (SABA), which sets the per-round tree budget by balancing expected draft gain against verification cost. Across multiple models and tasks, GRAFT achieves 2.13x-6.36x end-to-end speedup over autoregressive decoding while adding less than 0.5ms of overhead per round.
Speculative DecodingDiffusion LM推理加速
cs.CL · 2608.20530 · 2026-08-20
LiLiCorr: Lightweight Likelihood Correlation of Parallel Drafts for Speculative Decoding
💬 DFlash 这类扩散式区块草稿头一次前向能吐出整段候选 token,但训练目标只是逐位置边缘分布,导致草稿内部各自合理却联合不连贯。LiLiCorr 给每个候选算 in/out 向量、用余弦相似度给相邻候选连边,低成本找回联合结构,接受长度提升 9-19%,延迟开销仅约 2.8%,72 个设置中 70 个吞吐量最优。
▶ 原文摘要 Abstract
Speculative decoding accelerates language-model inference by drafting future tokens that the target model verifies in parallel. A diffusion-style block head such as DFlash is trained on per-position marginals rather than the joint block distribution, so the tokens it emits are individually plausible yet jointly incoherent. We introduce LiLiCorr, a Lightweight Likelihood-based model that Correlates the per-position marginal distributions a drafter already produces. It keeps the top-k tokens at each position as candidates, producing for each an in and an out vector; a pair of adjacent candidates matches when the earlier one's out vector has high cosine similarity with the later one's in vector. Over the vanilla DFlash drafter, LiLiCorr raises acceptance length on every benchmark by 9 to 19%, while its scoring head accounts for about 2.8% of the per-block latency. LiLiCorr delivers the highest throughput in 70 of 72 settings.
Speculative DecodingDiffusion LM推理加速
cs.AI · 2608.20743 · 2026-08-21
Is Multimodal Speculative Decoding Ready for Diffusion-Based Parallel Drafting? A Survey and Empirical Diagnosis
💬 综述+实证诊断,系统盘点"扩散式并行起草"这条投机解码新范式在 Vision-Language/Video-Language/Audio/VLA 四类多模态架构上的应用现状。提出统一分类法解耦起草侧并行度与树构建/验证策略,实证结论是该方向在多模态领域仍largely unexplored——注意这是综述而非新方法论文,涉及音频/VLA模态与具身、双工方向有一定交叉。
▶ 原文摘要 Abstract
Speculative decoding accelerates autoregressive generation by allowing a lightweight drafter to propose future tokens. The most recent paradigm is block-parallel generative drafting, including diffusion-based methods such as DFlash and DSpark, achieving up to 3.6x speedup on common daily chatting tasks. While this transition is well studied in text-only LLMs, its applicability to multimodal models remains an open question. We systematically analyze a wide spectrum of multimodal models, spanning Vision-Language, Video-Language, Audio, and Vision-Language-Action (VLA) architectures. We introduce a unified taxonomy that isolates drafter-side parallelism from orthogonal design choices such as tree construction and verification strategies, and provide a comprehensive empirical comparison under varying degrees of parallelism across standardized multimodal benchmarks including OCR, VQA, visual reasoning, and image captioning.
Speculative DecodingMultimodalSurvey
cs.DC, cs.MA · 2608.20370 · 2026-06-19
Benchmarking LLM Serving Systems for Agentic AI Workloads with XPerf
💬 Agentic 应用的非确定性控制流让传统固定负载压测方法失效——同一任务两次运行的请求序列都可能不同。XPerf 用细粒度 trace replay 录制真实 agent 轨迹并可复现地在不同 serving 系统上重放,内置覆盖编码/深度研究/问答的 8 个默认 agentic 应用,配合系统与硬件层面的细粒度 profiling 定位瓶颈。
▶ 原文摘要 Abstract
We present XPerf, a benchmarking framework that load-tests LLM serving systems with diverse agentic AI workloads. It provides detailed profiling of the serving system and hardware, enabling users to identify performance bottlenecks introduced by agentic workloads. XPerf minimizes workload variation with a fine-grained trace replay approach: it enables users to easily collect traces from real agentic applications, synthesize new workloads with various patterns if needed, and reproducibly replay them on different LLM serving systems. XPerf includes eight agentic applications across diverse use cases (e.g., coding, deep research, and Q&A) by default. Our empirical study using these workloads shows that XPerf accurately replays agentic workloads, provides detailed performance breakdowns, scales to larger serving systems, and assists in serving system debugging.
LLM ServingBenchmarkAgentic AI

🤖 具身智能:VLA

cs.RO · 2608.20735
ForeTime-VLA: Causal Future-Token Distillation from a World Action Model for Conveyor-Belt Manipulation
💬 抓取移动中的物体,策略必须提前"预判"接触时刻,而不是只看当下这一帧。ForeTime-VLA 把一个昂贵的世界动作模型(World Action Model)在训练期蒸馏成几个未来 token,塞进因果、可实时部署的 π0.5 策略里——推理时不再需要"想象"未来帧,却依然带着对未来的预期去动作。传送带抓取数据集上 Test MAE 从 0.134119 降到 0.130593(2.63%)。
▶ 原文摘要 Abstract
Manipulating moving objects requires a policy to anticipate contact events, yet vision-language-action (VLA) policies are commonly fine-tuned from the current observation alone. World action models (WAMs) learn predictive dynamics, but running a video-scale teacher or explicitly imagining future frames at deployment is costly. We introduce ForeTime-VLA, a dense pi0.5 policy that distills a future-aware, action-equivalent representation from a frozen Fast-WAM-derived teacher while remaining causal at inference. Offline, current and future video latents are compressed into a whitened 64-D target. Online, an eight-frame history encoder predicts this target together with manipulation phase and normalized time-to-transition. On a deduplicated conveyor-belt dataset, we compare 40k-step checkpoints on 768 matched windows per split. Test MAE decreases from 0.134119 to 0.130593 (2.63%).
具身AIVLAWorld Model
cs.RO, cs.LO, eess.SY · 2608.20556 · 2026-08-20
Logic-VLA: A Temporal Logic Conditioned Vision-Language-Action Model
💬 NL 指令无法精确指定 VLA 的安全关键或时空约束要求。Logic-VLA 让模型在推理时直接读取 Signal Temporal Logic (STL) 规约,用语法图编码器理解时序逻辑语义,再通过 STL 条件微调加轨迹级偏好优化来强化对满足性规约的遵循。四旋翼导航仿真显示 STL 满足率提升24.8~40.7个百分点,自然语言任务成功率最多只降1.8pp。
▶ 原文摘要 Abstract
Vision-language-action (VLA) models can follow natural-language (NL) task instructions, but such instructions may not precisely specify safety-critical or spatiotemporal requirements on the resulting behavior. We introduce Logic-VLA, a formal-requirement-aware VLA that conditions on Signal Temporal Logic (STL) specifications supplied at inference time. Logic-VLA uses a syntax-graph-based STL encoder pre-trained to capture temporal logic semantics. Policy adaptation proceeds in two stages: STL-conditioned supervised fine-tuning on satisfying demonstrations is followed by trajectory-level preference optimization over matched satisfying-violating rollout pairs using a flow-matching surrogate for Identity Preference Optimization. Across the evaluation benchmarks, Logic-VLA improves STL satisfaction rate over an STL-blind base policy by 24.8 to 40.7 percentage points (pp) while reducing nominal NL task success by at most 1.8 pp.
具身AIVLA形式化方法

📚 知识库更新

AgentTeam-Shared-Knowledge — 今日无新增
已执行 git pull --ff-only(master 分支),本地 HEAD 与 checkpoint 一致,均为 6625123a,自上次检查以来无新 commit。
数据来源:arXiv(cs.AI / cs.LG / cs.MA / cs.RO / cs.CL / cs.SE / cs.CV / eess.AS 等分类,2026-08-25 抓取,共264篇新提交)· AgentTeam-Shared-Knowledge 私有仓库