Overview
AllternitOS is the Super-Agent OS surface inside the Allternit platform. It gives users and agents a unified desktop-like environment for launching specialized programs, monitoring active work, chatting with the agent runtime, and controlling real terminals and automations from a single view. AllternitOS is exposed as a first-class view in the platform shell. It combines a program launcher, an active-programs manager, an agent chat pane, and the Allternit Console — a side panel with a real multi-session terminal, kanban board, and automation hub.How to access it
AllternitOS runs inside the platform shell:Features
Program Launcher
Launch any of the nine built-in programs from a grid or the sidebar dock
Active Programs
See and manage running program instances with minimize, focus, and close actions
Agent Chat
Chat with the agent runtime and spawn programs inline with
@ commandsAllternit Console
Real multi-session terminal, kanban task board, and automation sequencer in a side drawer
Program Dock
Persistent sidebar with one-click access to every program type
URI Launch
Deep-link into programs via the
allternit:// scheme or XML launch directivesKernel Bridge
Connect to the Brain Runtime over WebSocket, Electron IPC, or a mock backend
Streaming State
Live updates, streaming content, and progress tracking for long-running programs
Built-in programs
Key concepts
Program Launcher
The launcher is the default tab in AllternitOS. Each program is shown as a card with its icon, name, description, and URI. Click any card, or click the matching icon in the left dock, to open a new program instance. Quick launch commands also work in chat:Active Programs
Switch to the Active tab to see every running program instance. Each row shows the program type, title, and status, with controls to minimize or close the instance.Allternit Console
The console is a collapsible side drawer with three tabs:
Toggle the console from the header or use the command palette.
Chat-to-Program
The Chat tab demonstrates agent-driven program creation. Agents can respond with XML-style launch directives that AllternitOS parses and executes automatically:research-doc, data-grid, presentation, code-preview, asset-manager, orchestrator, and workflow-builder.
URI scheme
Programs can be launched via theallternit:// URI scheme:
allternit:open-labs browser event when the A://Labs program is selected, routing users to the Labs learning surface.
Kernel bridge
AllternitOS connects to the Brain Runtime through a kernel bridge. The bridge auto-detects the best available backend:
Configure the endpoint in the
AllternitOSProvider:
Sidecar store
Program state is managed byuseSidecarStore, a Zustand store with Immer and localStorage persistence. It tracks:
- Program registry and tab order
- Active and suspended programs
- Streaming chunks and live agent text
- UI state such as panel width and expansion
Kernel protocol messages
When connected to a kernel, the runtime sends typed messages that update programs:Environment
AllternitOS is bundled into the platform surface atsurfaces/ai.allternit.com. It requires no separate server, but some programs — such as the Terminal and Orchestrator — depend on platform APIs or a connected kernel/runtime.