Skip to main content

What is Engine?

Engine is a local-first runtime that connects persistent goals to typed observations and bounded actions across different worlds. The system combines a Heart for continuity with exactly one active general executive brain, zero or more specialist brains, and world plugins. A model or planner may propose an action; it cannot authorize that proposal or establish the result.

Status labels used in this documentation

  • Implemented — present in the current action lifecycle and v3 plugin contracts.
  • Fake/simulation-tested — proven through automation or preserved experiments, but not automatically proven on real hardware.
  • Live read-only — observed against a real target without mutation.
  • Roadmap — direction or hypothesis; do not present it as a current product capability.

The short version

A conventional agent harness starts with a model turn: the user asks for something, the model selects a tool, and the transcript remembers what happened. Engine starts with a durable world and a durable goal:

record goal
-> observe world
-> determine whether the goal is already true
-> propose a bounded action if needed
-> check schema, preconditions, policy, and mandate
-> authorize and execute the exact request
-> observe again
-> compare expected and actual effect
-> complete the goal or continue maintaining it

Operational truth therefore does not live in a prompt. Goals, snapshots, observations, policy decisions, authorizations, receipts, and effects are stored durably and can be reconstructed after process or provider loss.

Current world versus desired world

Engine continuously keeps two ideas separate:

  • the current world: what identified providers and sensors observed, including time, quality, staleness, conflicts, and gaps;
  • the desired world: the conditions in an ACHIEVE or MAINTAIN goal, with constraints, budgets, and stop conditions.

Consider a light. “Turn on the hall light” is a command. “While this zone is occupied and dark, maintain the declared lighting band without exceeding its power limit” is a durable intent. A motion event may wake the Heart, but does not prove that the zone is occupied now. Engine first asks the Homey provider for a fresh observation, compares current lux, presence, light state, and power with the desired condition, and only then may request a bounded change. The device ACK still is not the result: a second observation and lighting oracle must establish the measured effect. This closed loop is Fake/simulation-tested; whole-home Homey observation is Live read-only.

The same pattern could govern air conditioning: “keep occupied rooms between 21 and 23 °C under a declared power budget” is a MAINTAIN goal, whereas “set the air conditioner to 22 °C” is merely a command. A climate plugin would need explicit temperature and occupancy coverage, units, capability limits, authorization, and an independent post-effect oracle. That complete air-conditioning application is Roadmap, not a current physical claim.

The living cycle is therefore:

instruction -> durable intent -> observe current world -> compare with desired world
-> propose -> validate -> authorize -> execute -> observe effect
-> complete, continue, monitor, or preserve uncertainty

When the desired world is demonstrably true, a maintained goal becomes quiet. When an event or poll wakes it, Engine observes again. When evidence is insufficient, it does not ask a model to guess reality; it remains UNKNOWN, STALE, or CONFLICTING.

What Engine consists of

ComponentResponsibilityStatus
HeartKeeps goals, world state, attention, cycles, experience, and recovery aliveImplemented
General brainSelects the next cognitive step, specialist, or semantic effectImplemented: deterministic or model-backed
Specialist brainsProvide bounded, domain-specific advice and optionally a typed proposalImplemented; multiple specialists can be registered at once
World pluginsObserve targets, provide domain semantics, and optionally provide proposal-only autonomyImplemented through engine.plugin/v3; v2 remains compatible without autonomy
Policy and authorizationDecide outside every brain whether an exact request may executeImplemented as deny-by-default mandate policy
Executor and effect oracleExecute an authorized request and verify its effect against fresh stateImplemented
Learning/routinesProcess explicit corrections and bounded behavior signals without expanding authorityImplemented, primarily Fake/simulation-tested
Hard-realtime controller and safety hardwareEnforce timing, interlocks, watchdogs, and physical limitsBelongs to the target; not the deliberative Heart loop

Read Heart and brains for the exact division of responsibility, Architecture for the mutation chain, and Generic plugin autonomy for modes and enrollment.

Two kinds of goals

Engine has two canonical goal modes:

  • ACHIEVE: reach an effect once, then become completed;
  • MAINTAIN: keep an effect true. When the world is stable, the goal becomes monitoring; observed drift reactivates the loop.

A MAINTAIN goal makes the difference from a one-off workflow clear. “Turn on light A” is a command. “Keep this workspace between 350 and 450 lux, under a power budget” is a persistent desired state. While the state is stable, Engine should continue observing without repeatedly calling the general or specialist brain.

Both goal modes are Implemented. The quiet-monitoring, drift, and repair route is Fake/simulation-tested. A v2 Homey observation run is Live read-only, but the decisive physical lux/watt actuation test remains Roadmap. See All modes.

Which worlds exist now?

The current repository contains several layers of evidence:

WorldWhat it provesEvidence boundary
Sandbox filesystem and discrete gridThe original 0.1 acceptance: the same Heart/brain/catalog path, partial effect, oracle, and restartFake/simulation-tested; this is the older v1 acceptance layer
Reference warehouse pluginA separately installable, non-household v2 world with a durable TASK, polling, deadline cancellation, oracle, and restartFake/simulation-tested
Engine Homey/HomeOpsWhole-house world model, events as wake hints, polling, typed actions, sensor oracles, preferences, and routinesFake/simulation-tested for mutation; Live read-only for whole-home observation
Engine ContextLocal time, scheduled wakes, confirmed location, and optional weather with an explicit privacy choiceImplemented; missing data remains UNKNOWN

These examples prove that a shared lifecycle can support different domains. They do not prove that every possible machine is already supported or can be operated safely.

Why “local-first”?

Local-first means here that:

  • the complete operational state and audit trail remain in local stores;
  • the system works with a deterministic brain and no external model provider;
  • a local or remote OpenAI-compatible provider can be used optionally;
  • a remote model URL without an API key fails closed;
  • a model receives a bounded context projection, not the complete world by default;
  • plugins declare network, filesystem, secret, and privacy needs.

Local-first does not mean “without a network,” nor does it mean “automatically safe.” A plugin may require network access; a human must configure that boundary deliberately.

Is an LLM part of Engine?

Intelligence is part of the Engine concept, but no particular LLM provider is. The current runtime can compose exactly one general executive brain:

  • a transparent deterministic executive for known, stable routes; or
  • a model-backed executive behind a provider-neutral structured-output contract.

Plugins may also register specialist brains. Every brain produces untrusted, typed input. It cannot create permission, declare an effect observed, or bypass a safety rule. Core correctness must continue to work when every LLM provider disappears or is replaced.

What can and cannot Engine do today?

It can

  • manage durable, multi-target GoalSpecV2 goals and composed WorldSnapshotV2 state;
  • execute ACHIEVE and MAINTAIN goals;
  • compose one general brain and multiple specialists;
  • validate plugin manifests, capability families, units, limits, and schemas;
  • durably record the complete proposal-to-effect lifecycle;
  • handle immediate actions and durable tasks with polling, cancellation, and restart;
  • process explicit preference corrections and bounded routine/preference candidates;
  • scaffold new v3 plugins with the SDK and discover them through entry points.

It cannot yet claim broadly

  • control arbitrary devices without a predeclared plugin contract;
  • run hard-realtime motor, flight, or stabilization loops;
  • replace physical safety hardware, certification, or fail-safe behavior;
  • arbitrate multiple competing general brains as a first-class feature;
  • prove that multi-brain systems are always better than a monolith;
  • train model weights online or create a new neural brain from experience by itself;
  • provide an end-to-end STREAM reconnect reference proof;
  • claim that physical Homey actuation has passed the v2 trial.

Read What Engine is not for the hard boundaries and The end goal for the direction behind the current vertical slice.

Core identity rules

LLM proposal != authority
prediction != observation
policy != physical safety
deliberation != realtime control
simulation evidence != real-world certification
generic lifecycle != generic device semantics
state != weights
imagine != execute

These separations are not merely an extra safety layer around Engine; they determine how Engine interprets its own state, decisions, and evidence.