BOS CORE · ARCHITECTURE

Inside the operating system.

Explore the six runtime layers behind BOS Core, from the first request to a governed action. Follow each module into its responsibilities, components, and design decisions.

The Platform overview describes five business capabilities. This architecture shows the six engineering layers that support them.

Design approval is separate from delivery. Thirty software modules are approved; Robotics/IoT remains draft and deferred. Approval does not mean the runtime is built, deployed, or production-validated.

Public architecture overview

Public overview

Architecture source review date: 2026-09-07. Technical details require registration.

01

Interface & Orchestration

Where work arrives and gets coordinated: requests come in, and multi-step work is sequenced and timed.

Command Router

Route every inbound command to the correct handler.

Design: Approved

Event Manager

Carry commands and events across the runtime on a single bus, under the delivery contract each message class requires.

Design: Approved

Session Management

Maintain the lifecycle and context of every active BOS session.

Design: Approved

Task Scheduler

Determine when work runs and release it at the right time.

Design: Approved

Workflow Orchestrator

Coordinate multi-step work across the runtime and hold the state of every run.

Design: Approved
02

Intelligence & Decision

Where the runtime works out what to do: goals, business rules, context, and the decision itself.

AI/ML Reasoning

Provide inference, prediction, and language understanding to the runtime, and propose calibrations from evaluated outcomes.

Design: Approved

Context Engine

Assemble relevant context for requests and decisions, and surface what deserves notice unprompted.

Design: Approved

Decision Engine

Select the course of action from the available options and evidence.

Design: Approved

Goal & Plan Manager

Hold the goals of the runtime, rank them against each other, and produce the plans that pursue them.

Design: Approved
03

Execution & Automation

Where decisions become actions in the outside world.

Action Executor

Carry out the individual actions the runtime commits to.

Design: Approved
04

Data & Knowledge

What the runtime knows and remembers.

Cache Layer

Serve frequently used data quickly and reduce load on the source stores.

Design: Approved

Knowledge Graph

Represent the entities of the business and the relationships between them.

Design: Approved

Metadata Catalog

Describe what data exists, where it lives, and what it means.

Design: Approved

Vector Store

Store and retrieve embeddings for similarity search.

Design: Approved
05

Security, Safety & Governance

The limits on autonomous action, and the record of what was done.

06

Infrastructure & Platform

The platform everything else runs on.