Layered Intent Control Architecture

LICA (Layered Intent Control Architecture) is a robotics control architecture designed to unify autonomy, safety, and human control while remaining observable, debuggable, and explainable in real time. LICA is particularly suited to mobile robots operating in uncertain environments, where layered autonomy must coexist with reactive safety systems and human override. The core principle of LICA is simple: no subsystem commands motors directly except a single authority resolver. All other subsystems express intent, not actuation. This single rule eliminates conflicting control, hidden priority inversions, and “ghost motion” caused by multiple layers fighting over outputs.

LICA is composed of independent intent-producing layers and a central arbitration point. Sensors feed into a Sentinel layer responsible for reactive safety intent, a Mission layer responsible for goal-directed autonomy, and an RC or Supervisor layer responsible for human or external control. All of these feed into a single Motion Authority Resolver, which is the only component permitted to drive the hardware backend. Each layer observes system state and publishes desired motion intent but never directly controls motors.

An intent in LICA is a structured description of desired motion rather than a command. Typical intent fields include linear velocity, angular velocity, and optional modifiers such as confidence, constraints, or urgency. Intents may be continuous, such as wall following; discrete, such as stop or one-shot actions; or reactive, such as obstacle avoidance.

The Sentinel layer exists to prevent damage or unsafe behavior. It runs continuously, is fast and reactive, does not plan, and does not know mission goals. Typical Sentinel triggers include bumper activation, time-of-flight hard stops, soft distance limits, sensor loss or staleness, and confidence collapse such as losing a wall during wall following. The Sentinel publishes both intent and explicit reason codes explaining why it intervened.

The Mission layer exists to execute structured behaviors over time. It is step-based, time-aware, and progress-aware, and may explicitly allow or disallow Sentinel override on a per-step basis. Typical mission actions include driving a distance, turning to a heading, wall following, waiting, or performing signaling actions such as buzzers. The Mission layer publishes intent along with explicit step lifecycle events including START and END, and always reports a completion or failure reason.

The RC or Supervisor layer exists to allow immediate human or external control. It has the highest priority when active, requires explicit arming, and is stateless with respect to mission execution. Typical examples include gamepads, teleoperation interfaces, or external supervisory controllers.

The Motion Authority Resolver is the keystone of LICA. There is exactly one authority resolver. It evaluates which layers are eligible to command motion, applies strict priority rules, and selects one and only one active authority. A typical priority ordering is RC when armed and fresh, then Sentinel when fresh and allowed, then Mission when active, and finally NONE when idle. Authority changes are edge-triggered and logged. Every transition is observable and includes context such as mission state and Sentinel reasoning, making behavior auditable after the fact.

LICA enforces explicit lifecycle transparency. Every mission step must emit a START event, must run for at least one control cycle, and must emit an END event with a reason. This guarantees that there are no zero-length steps, no invisible transitions, and that full post-run forensic reconstruction is possible from logs alone.

LICA exists to address common failure modes found in subsumption architectures, ad-hoc autonomy stacks, and monolithic planners. It avoids hidden suppression, implicit priority, poor fault tolerance, and non-explainable behavior. In return, LICA provides deterministic control, explicit authority, rich introspection, graceful degradation, and human-readable logs.

LICA systems obey strict design invariants: there is a single motor writer, layers express intent rather than actuation, authority changes are edge-triggered, all interventions are reasoned and logged, all lifecycles are observable, and the system fails safe to STOP. Violating any of these invariants is considered a design bug.

LICA is not a planner, not a behavior tree, and not subsumption. It is a control contract. Many layers may think, but only one may act.

Books & Articles Surrounding Ideas Related to LICA

Rodney A. Brooks (1986)

A Robust Layered Control System for a Mobile Robot

IEEE Journal of Robotics and Automation

→ Introduced subsumption and layered control in mobile robots

Rodney A. Brooks (1991)

Intelligence Without Representation

Artificial Intelligence Journal

→ Philosophical foundation for behavior-based, layered robotics

Ronald C. Arkin (1998)

Behavior-Based Robotics

MIT Press

→ Comprehensive treatment of behavior arbitration and layered robot control

Sebastian Thrun, Wolfram Burgard, Dieter Fox (2005)

Probabilistic Robotics

MIT Press

→ Covers perception, decision-making, and layered control in real robots

Hadas Kress-Gazit, Georgios Fainekos, George Pappas (2007)

Where’s Waldo? Sensor-Based Temporal Logic Motion Planning

IEEE ICRA

→ Formal methods for combining high-level intent with reactive constraints

Choset et al. (2005)

Principles of Robot Motion: Theory, Algorithms, and Implementations

MIT Press

→ Hybrid control and planning for mobile robots

M. Alami et al. (1998)

A Multi-Layer Architecture for Autonomous Robot Navigation

IEEE ICRA

→ Explicit three-layer architecture (deliberative, executive, reactive)

Ramadge & Wonham (1987)

Supervisory Control of a Class of Discrete Event Processes

SIAM Journal on Control and Optimization

→ Theoretical basis for safety supervision and override logic

Colledanchise & Ögren (2018)

Behavior Trees in Robotics and AI

CRC Press

→ Modern formalization of behavior selection and priority

Leave a Reply

Your email address will not be published. Required fields are marked *