Paper: 2609.05369 Authors: Vivek Chavan, Yahuan Shi, Oliver Heimann, Kevin Haninger, Jörg Krüger Categories: cs.RO, cs.CV

The Gap

Vision-language-action models can execute short manipulation skills, and they remain brittle in long-horizon procedures. The paper names four requirements that long-horizon tasks impose and that a reactive policy does not naturally satisfy: persistent task state, dependency-aware reasoning, conditional decisions, and reliable grounding.

These are not four unrelated weaknesses; they are all consequences of treating the task as a single skill to be executed. A reactive policy maps observation to action, which is sufficient when the next action depends only on what is visible now. In a procedure it does not: what to do next depends on what has already been completed, and on branches that were taken earlier. So the model must carry state, reason about dependencies between steps, handle conditionals, and ground its references reliably at each stage — and the failure mode when it cannot is a plausible-looking action at the wrong point in the procedure.

   VLA MODELS: SHORT SKILLS WORK, LONG PROCEDURES DO NOT

   they execute SHORT MANIPULATION SKILLS
   they remain BRITTLE in LONG-HORIZON PROCEDURES
        |
        v
   [FOUR REQUIREMENTS THE PAPER NAMES]
     PERSISTENT TASK STATE
     DEPENDENCY-AWARE REASONING
     CONDITIONAL DECISIONS
     RELIABLE GROUNDING
        |
        v
   [THEY ARE NOT FOUR UNRELATED WEAKNESSES]
     all consequences of treating the task as ONE SKILL TO EXECUTE
        |
        v
   a REACTIVE policy maps observation -> action
     -> sufficient when the next action depends ONLY on what is
        visible NOW
   in a PROCEDURE it does not:
     what to do next depends on WHAT HAS ALREADY BEEN COMPLETED,
     and on BRANCHES taken earlier
        |
        v
   -> the model must carry STATE, reason about DEPENDENCIES,
      handle CONDITIONALS, and GROUND reliably at each stage
   -> failure mode: a PLAUSIBLE-LOOKING ACTION AT THE WRONG POINT

The Increment

One sentence: Before this paper, long-horizon VLA manipulation relied on reactive policies that cannot carry procedure state; after it, a neuro-symbolic framework pairs VLA control with explicit task graphs and multimodal procedural memory, with pseudo-gaze annotation providing demonstration guidance.

Core Mechanism

The framework’s logic is a division of labour: learned control for the skill, explicit structure for the procedure.

Task graphs encode action dependencies, valid transitions, and branch conditions. This is where the procedure lives. Dependencies supply the ordering — which step requires which — and valid transitions supply what may follow what. Branch conditions are the part a reactive policy cannot represent at all: a procedure where the correct next step depends on an observed condition is not a sequence but a graph with alternative paths, and representing it explicitly is what makes conditional execution possible rather than hoped for.

Multimodal procedural memory maintains the active step, completed actions, textual context, and task-relevant visual evidence. The four fields correspond to the four requirements. The active step and completed actions give persistent task state — including the negative information that a step has not been done, which is what a reactive policy cannot know. Textual context supplies the procedure’s own description. And task-relevant visual evidence keeps the grounding anchored in observations that matter at this point rather than the whole scene.

Together, these structures guide object selection, destination grounding, subgoal dispatch, and verification of expected state transitions. Four operations, and the fourth deserves attention: the framework verifies expected state transitions rather than only issuing actions. So the symbolic layer does not merely decide what to do next — it checks whether the outcome matched expectation, which is what allows recovery from a step that failed silently.

Human demonstrations provide additional spatial and temporal guidance through gaze or saliency cues. This is the most distinctive element, and the design choice within it is honest about a hard problem. Gaze in a teleoperation video is recorded from the operator’s viewpoint, while the policy acts from the robot’s — transferring gaze across views is itself a research problem. So the initial study bypasses cross-view gaze transfer and directly annotates pseudo-gaze in robot-view teleoperation videos. That isolates the question being asked: does demonstration-derived visual guidance help policy learning, independent of the gaze-transfer problem? Getting that question answered first is the right sequencing, and stating the bypass explicitly is what makes the result interpretable.

The resulting guidance is used during VLA fine-tuning and inference — so it shapes both learning and execution.

Two domains test the framework, chosen because each requires all four capabilities: workspace clearing and surgical-instrument handling, both needing ordered execution, visually grounded decisions, and conditional branching. The evaluation then measures across a spread of granularity, from correct-object and destination selection through subtask completion, task progress, step-order consistency, complete-task success, to procedural or execution mistakes. Measuring step-order consistency separately is notable — it is precisely the failure mode a reactive policy exhibits and a task graph should prevent, so it is the metric that tests the paper’s own thesis.

   DIVISION OF LABOUR: LEARNED CONTROL FOR THE SKILL,
   EXPLICIT STRUCTURE FOR THE PROCEDURE

   [1] TASK GRAPHS encode:
         action DEPENDENCIES
         valid TRANSITIONS
         BRANCH CONDITIONS
       -> this is where the PROCEDURE lives
       -> dependencies supply ORDERING (which step requires which)
       -> valid transitions supply what MAY FOLLOW what
       -> branch conditions are what a reactive policy cannot
          represent at all: a procedure whose correct next step
          depends on an observed condition is not a SEQUENCE but
          a GRAPH WITH ALTERNATIVE PATHS
          -> representing it explicitly makes conditional
             execution POSSIBLE rather than hoped for

   [2] MULTIMODAL PROCEDURAL MEMORY maintains:
         the ACTIVE STEP        }
         COMPLETED ACTIONS      } -> PERSISTENT TASK STATE,
         TEXTUAL CONTEXT        }    including the NEGATIVE
         TASK-RELEVANT VISUAL   }    information that a step
           EVIDENCE             }    has NOT been done
                                           (which a reactive
                                            policy cannot know)
       <- textual context supplies the procedure's own description
       <- visual evidence keeps grounding anchored in what matters
          NOW rather than the whole scene

   [3] THE FOUR OPERATIONS THESE STRUCTURES GUIDE
         object selection | destination grounding |
         subgoal dispatch | VERIFICATION of expected state transitions
       <- the fourth deserves attention: the framework CHECKS
          whether the outcome matched expectation
       -> allows recovery from a step that failed SILENTLY

   [4] DEMONSTRATION GUIDANCE via GAZE or SALIENCY cues
       AND AN HONEST DESIGN DECISION:
         gaze in a TELEOPERATION video is from the OPERATOR's view;
         the policy acts from the ROBOT's view
         -> cross-view gaze transfer is ITSELF a research problem
         -> so the initial study BYPASSES it and directly annotates
            PSEUDO-GAZE in ROBOT-VIEW teleoperation videos
         <- ISOLATES the question: does demonstration-derived visual
            guidance help policy learning, INDEPENDENT of the
            gaze-transfer problem?
         <- right SEQUENCING, and stating the bypass explicitly is
            what makes the result interpretable
       -> guidance used DURING FINE-TUNING AND INFERENCE
          (shapes both learning and execution)

   TWO DOMAINS, each requiring ALL FOUR capabilities
     workspace clearing
     surgical-instrument handling
     both needing ORDERED EXECUTION, VISUALLY GROUNDED DECISIONS,
     CONDITIONAL BRANCHING

   EVALUATION ACROSS GRANULARITIES
     correct-object and destination selection
     subtask completion | task progress
     STEP-ORDER CONSISTENCY
     complete-task success | procedural or execution mistakes
       <- measuring step-order consistency separately is notable:
          it is precisely the failure mode a REACTIVE policy shows
          and a TASK GRAPH should prevent
          -> the metric that TESTS THE PAPER'S OWN THESIS

Think of it as the difference between a skilled pair of hands and a checklist plus a memory of what has been done. Give the hands a task and they will perform it well; that part is solved. Now put them in a procedure where step four assumes step two succeeded, where step five has two variants depending on what was observed at step three, and where a failed step two must be noticed and retried. The hands cannot hold any of that — they act on what is in front of them. What you need is a checklist for the ordering and the branches, a memory of what has actually been completed, and a step where you verify the outcome before moving on. The pseudo-gaze annotation is the equivalent of a supervisor’s eyes: recorded guidance showing where to look at each moment, which helps the hands find the right object without changing their skill at all.

Key Concepts

  • The procedure as an explicit graph: dependencies, valid transitions and branch conditions. Conditional execution is not expressible as a sequence, which is why the structure has to be represented rather than learned implicitly.
  • Procedural memory with four fields: active step, completed actions, textual context, task-relevant visual evidence. Completed actions carry the negative information — that a step has not been done — which no reactive policy can know.
  • Verification of expected transitions: checking outcomes rather than only issuing actions. It is what makes silent failure recoverable, and it is a capability the symbolic layer provides that a policy cannot.
  • Isolating the guidance question: bypassing cross-view gaze transfer by annotating pseudo-gaze in robot view. It separates “does demonstration guidance help” from “does gaze transfer work”, answering the tractable question first.
  • Step-order consistency as the self-test: the metric that directly probes the paper’s thesis, since order failure is what a reactive policy produces and a task graph should prevent.

Framework Shift

Before (reactive policy, one skill at a time):
  observation -> action
  -> sufficient when the next action depends only on what is visible
  -> brittle in procedures: no state, no dependencies, no branches
  -> failure appears as a plausible action at the wrong point

After (learned control plus explicit procedure):
  task graphs: dependencies, transitions, branch conditions
  procedural memory: active step, completed actions, text, visual evidence
  -> guides selection, grounding, dispatch, AND verification
  -> demonstration guidance via pseudo-gaze during fine-tuning
     and inference
  -> evaluated on step-order consistency as well as success

From expecting a reactive policy to carry a procedure it cannot represent, to pairing learned control with an explicit structure for ordering, branching and state, the core shift is that long-horizon reliability comes from separating the skill from the procedure that sequences it.

Expert Assessment

Problem choice: Excellent, and the four requirements are a clean decomposition of why long-horizon manipulation resists scaling. Naming them as consequences of a single mistaken framing — treating a procedure as one skill — is what makes the framework’s shape follow from the diagnosis rather than being asserted.

Method maturity: The division of labour is well conceived: explicit graphs for the parts that are combinatorial (dependencies, branches, transitions) and learned control for the part that needs perception. Including verification among the guided operations is the element most often omitted in similar frameworks, and it is what makes silent failure recoverable. The pseudo-gaze decision is well handled methodologically — recognizing that cross-view transfer is a separate problem and bypassing it explicitly, rather than reporting a confounded result, is the honest sequencing.

Experimental integrity: The evaluation’s spread is the strength: measuring step-order consistency alongside success rates tests the paper’s own claim, since order failure is the failure a task graph is supposed to prevent. Two domains, one of which (surgical-instrument handling) requires conditional branching rather than just ordering, is a reasonable breadth. The obvious limitation is that bypassing gaze transfer means the demonstration-guidance result is established for pseudo-gaze in robot view only, and how much of the benefit survives real cross-view transfer — the harder and more deployable setting — remains open. The paper is clear about this.

Writing quality: The four requirements are stated once and then mapped onto the framework’s components, so a reader can see what addresses what. Because the branching capability is the least familiar, a short worked example — one procedure, its graph, and a branch taken or not taken — would make the contribution concrete for readers who have not built such a system.

Verdict: strong accept — it decomposes long-horizon manipulation into four explicit requirements, addresses them with a well-scoped neuro-symbolic structure including outcome verification, and evaluates the failure mode its own thesis predicts.

Takeaways

  • Separate the skill from the procedure. Learned control handles manipulation; ordering, branches and state need an explicit structure.
  • Store the negative information. Knowing which steps have not been completed is what a reactive policy cannot represent and a procedure requires.
  • Verify transitions, not just actions. Checking whether the outcome matched expectation is what makes a silently failed step recoverable.
  • Bypass the confound that is a research problem in itself. Isolating “does this guidance help” from “does view transfer work” answers the tractable question first, provided the bypass is stated.

论文: 2609.05369 作者: Vivek Chavan, Yahuan Shi, Oliver Heimann, Kevin Haninger, Jörg Krüger 分类: cs.RO, cs.CV

缺口

视觉—语言—动作(VLA)模型能执行短程操作技能,而它们在长时域流程中依然脆弱。论文点出了长时域任务强加的四项要求,而反应式策略并不天然满足它们:持久的任务状态、依赖感知的推理、条件决策、以及可靠的 grounding。

这四项并非彼此无关的弱点;它们都是把任务当作”一项待执行的技能”所导致的后果。一个反应式策略把观测映射到动作——当”下一步做什么”只取决于眼前可见的东西时,这就够了。但在一个流程里不是这样:下一步做什么取决于已经完成了什么,以及先前走过的分支。所以模型必须携带状态、推理步骤之间的依赖、处理条件分支,并在每个阶段可靠地 grounding 自己的指代——而当它做不到时,失效形态就是在流程的错误位置上做出一个看起来合理的动作

   VLA 模型:短技能可行,长流程不行

   它们能执行「短程操作技能」
   它们在「长时域流程」中依然脆弱
        |
        v
   [论文点出的四项要求]
     「持久的任务状态」
     「依赖感知的推理」
     「条件决策」
     「可靠的 grounding」
        |
        v
   [它们不是四项彼此无关的弱点]
     都是"把任务当作「一项待执行的技能」"所导致的后果
        |
        v
   「反应式」策略把 观测 -> 动作
     -> 当"下一步"只取决于「眼前可见的东西」时,这就够了
   而在「流程」里不是这样:
     下一步取决于「已经完成了什么」,
     以及「先前走过的分支」
        |
        v
   -> 模型必须携带「状态」、推理「依赖」、
      处理「条件」、并在每个阶段「可靠 grounding」
   -> 失效形态:「在错误的位置做出一个看起来合理的动作」

增量

一句话: 在这篇论文之前,长时域 VLA 操作依赖”无法携带流程状态”的反应式策略;在这篇论文之后,一套神经—符号框架把 VLA 控制与显式任务图、多模态过程记忆配对,并用伪注视标注提供来自演示的引导。

核心机制

框架的逻辑是一种分工技能交给学出来的控制,流程交给显式结构。

任务图编码动作依赖、有效转移与分支条件。 流程就住在这里。依赖给出顺序——哪一步要求哪一步;有效转移给出”什么可以接在什么之后”。而分支条件,是反应式策略根本无法表示的那一部分:一个”正确的下一步取决于某个被观测到的条件”的流程,不是一个序列,而是一张带备选路径的图;把它显式表示出来,才让条件化执行成为可能,而不是寄希望于它

多模态过程记忆维护当前步骤、已完成动作、文本上下文、以及与任务相关的视觉证据。 这四个字段正好对应那四项要求。当前步骤与已完成动作给出持久的任务状态——其中包含”某一步尚未完成”这条否定信息,而这是反应式策略不可能知道的。文本上下文提供流程自身的描述。而与任务相关的视觉证据,让 grounding 锚定在此刻要紧的观测上,而不是整个场景。

这些结构合起来,指导物体选择、目的地 grounding、子目标派发、以及对预期状态转移的验证。 四种操作,而第四种值得注意:框架验证预期的状态转移,而不只是发出动作。也就是说,符号层不只是决定下一步做什么——它还会检查结果是否符合预期,而这正是让”静默失败的步骤”可被恢复的东西。

人类演示通过注视(gaze)或显著性线索,提供额外的空间与时间引导。 这是最具特色的一项,而其中的设计选择对一桩难题很诚实。遥操作视频里的注视是从操作者视角记录的,而策略是从机器人视角行动的——跨视角的注视迁移本身就是个研究问题。因此初始研究绕开跨视角注视迁移,直接在机器人视角的遥操作视频里标注伪注视(pseudo-gaze)。这隔离出了真正被问的那个问题:来自演示的视觉引导是否有助于策略学习,且与注视迁移问题无关? 先回答这个问题是正确的排序;而把”绕开”这件事明确说出来,才让结果可被解读。

由此得到的引导被用于 VLA 的微调与推理——也就是说,它同时塑造学习与执行。

两个领域检验这套框架,选择它们是因为各自都需要全部四项能力:工作区清理手术器械处理,二者都需要有序执行、视觉 grounding 的决策、以及条件分支。评测随后覆盖了一整个粒度谱:从正确物体与目的地选择,到子任务完成、任务进度、步骤顺序一致性、完整任务成功,再到流程性或执行性错误把”步骤顺序一致性”单独测量值得注意——它恰恰是反应式策略会表现出的失效形态,也正是任务图应当防止的,因此这条指标就是在检验论文自己的论点

   分工:「学出来的控制」管技能,
         「显式结构」管流程

   [1] 任务图编码:
         动作「依赖」
         有效「转移」
         「分支条件」
       -> 流程就住在这里
       -> 依赖给出「顺序」(哪一步要求哪一步)
       -> 有效转移给出"什么可以接在什么之后"
       -> 分支条件是反应式策略「根本无法表示」的部分:
          一个"下一步取决于某个被观测条件"的流程,
          不是「一个序列」,而是「一张带备选路径的图」
          -> 显式表示它,才让条件化执行「成为可能」,
             而不是「寄希望于它」

   [2] 多模态过程记忆维护:
         「当前步骤」        }
         「已完成动作」      } -> 「持久的任务状态」,
         「文本上下文」      }    其中包含"某一步
         「与任务相关的      }    「尚未」完成"这条
           视觉证据」        }    「否定信息」
                                          (反应式策略
                                           不可能知道)
       <- 文本上下文提供流程自身的描述
       <- 视觉证据让 grounding 锚定在「此刻要紧」的东西上,
          而不是整个场景

   [3] 这些结构指导的四种操作
         物体选择 | 目的地 grounding |
         子目标派发 | 对「预期状态转移的验证」
       <- 第四种值得注意:框架会「检查」结果是否符合预期
       -> 让「静默失败」的步骤可被恢复

   [4] 通过「注视」或「显著性」线索提供演示引导
       以及一个诚实的设计决定:
         遥操作视频里的注视来自「操作者」视角;
         策略从「机器人」视角行动
         -> 「跨视角注视迁移」本身就是个研究问题
         -> 因此初始研究「绕开」它,直接在机器人视角的
            遥操作视频里标注「伪注视」
         <- 隔离出问题:来自演示的视觉引导是否有助于
            策略学习,且「与注视迁移问题无关」?
         <- 排序正确;而把"绕开"明确说出来,
            才让结果可被解读
       -> 引导用于「微调与推理」(同时塑造学习与执行)

   两个领域,各自都需要「全部四项」能力
     工作区清理
     手术器械处理
     二者都需要「有序执行、视觉 grounding 的决策、
     条件分支」

   评测覆盖一整个粒度谱
     正确物体与目的地选择
     子任务完成 | 任务进度
     「步骤顺序一致性」
     完整任务成功 | 流程性或执行性错误
       <- 单独测量步骤顺序一致性值得注意:
          它恰恰是「反应式」策略会表现出的失效形态,
          也正是「任务图」应当防止的
          -> 这条指标在「检验论文自己的论点」

可以用**“一双熟练的手,与一张检查表加一份’做过什么’的记忆之间的差别”来理解这件事: 给这双手一个任务,他们会把它做好;那一部分已经解决了。现在把他们放进一个流程里:第四步预设第二步成功了;第五步根据第三步观测到的东西有两个变体;而失败的第二步必须被注意到并重试。 这双手没法承载这些——它们是对眼前的东西行动。 你需要的是:一张写清顺序与分支的检查表、一份记录了实际完成了什么的记忆、以及一步”在继续之前先验证结果”。 而伪注视标注相当于主管的眼睛**:把”每一刻该看哪里”记录下来的引导——它帮助这双手找到正确的物体,却完全不改变他们的技能。

关键概念

  • 把流程当作一张显式的图: 依赖、有效转移、分支条件。条件化执行无法用序列表达,因此结构必须被表示,而不是被隐式学出来。
  • 四个字段的过程记忆: 当前步骤、已完成动作、文本上下文、与任务相关的视觉证据。已完成动作携带否定信息——某一步尚未完成——而任何反应式策略都不可能知道。
  • 对预期转移的验证: 检查结果,而不只是发出动作。它让静默失败变得可恢复,也是符号层提供、而策略本身没有的一项能力。
  • 隔离引导问题: 通过在机器人视角标注伪注视来绕开跨视角注视迁移。它把”演示引导是否有用”与”注视迁移是否可行”分开,先回答可解的那个。
  • 以步骤顺序一致性作为自检: 直接探测论文论点的指标——顺序失败正是反应式策略会产生的,也正是任务图应当防止的。

框架转变

之前(反应式策略,一次一项技能):
  观测 -> 动作
  -> 当"下一步"只取决于眼前可见之物时,这就够了
  -> 在流程中脆弱:没有状态、没有依赖、没有分支
  -> 失败表现为"在错误的位置做出一个看起来合理的动作"

之后(学出来的控制 + 显式流程):
  任务图:依赖、转移、分支条件
  过程记忆:当前步骤、已完成动作、文本、视觉证据
  -> 指导选择、grounding、派发,「以及验证」
  -> 通过伪注视提供演示引导,用于微调与推理
  -> 评测中同时测量「步骤顺序一致性」与成功率

从”期待一个反应式策略去承载它无法表示的流程”,转变为”把学出来的控制与一个用于排序、分支与状态的显式结构配对”,核心转变在于:长时域的可靠性来自”把技能与给它排序的流程分开”。

专家评审

选题眼光: 极好,而那四项要求是对”长时域操作为何难以扩展”的一次干净拆解。 把它们点名为同一个错误框定(把流程当作一项技能)的后果,才让框架的形态从诊断中推出,而不是被断言出来。

方法成熟度: 分工构思得好:把组合性的部分(依赖、分支、转移)交给显式图,把需要感知的部分交给学出来的控制。 把验证纳入被指导的操作,是同类框架中最常被省略的一环,而它正是让静默失败可恢复的东西。 伪注视的决定在方法学上处理得很好——识别出跨视角迁移是一个独立问题、并明确绕开它,而不是报一个被混淆的结果,这是诚实的排序。

实验诚意: 评测的跨度是长处:在成功率之外同时测量步骤顺序一致性,是在检验论文自己的主张——因为顺序失败正是任务图应当防止的失效。 两个领域(其中手术器械处理需要条件分支、而不只是排序)是合理的广度。 显而易见的局限是:绕开注视迁移,意味着”演示引导”这一结果只在机器人视角的伪注视下被确立;而这份收益有多少能在真实跨视角迁移(更难、也更具部署意义的设定)下存活,仍然开放。论文对此说得清楚。

写作功力: 四项要求陈述一次,然后被映射到框架组件上,因此读者能看到”什么对应什么”。 由于”分支”这项能力最不常见,若能给一个简单的完整示例——一个流程、它的图、以及一个走过或没走的分支——会让贡献对没搭过这类系统的读者变得具体。

判决: 强接收(Strong Accept) — 它把长时域操作拆解为四项显式要求,用一套范围界定良好的神经—符号结构(含结果验证)应对它们,并评测了它自己论点所预言的那种失效模式。

要点总结

  • 把技能与流程分开。学出来的控制负责操作;排序、分支与状态需要显式结构。
  • 存下否定信息。知道哪些步骤尚未完成,是反应式策略无法表示、而流程所需要的。
  • 验证转移,而不只是动作。检查结果是否符合预期,才让静默失败的步骤可被恢复。
  • 绕开那种”本身就是研究问题”的混淆。把”这套引导是否有用”与”视角迁移是否可行”分开,先回答可解的问题——前提是把这个绕开讲清楚。