SINT OS is what happens when you combine OpenClaw (the agent runtime), SINT Protocol (the governance engine), SINT Avatar (the face), and multimodal AI (the senses) into a single operating system for autonomous agents. SINT OS is not a separate product. It’s the integration layer. Each component already exists and runs independently. SINT OS makes them work as one system.Documentation Index
Fetch the complete documentation index at: https://docs.sint.gg/llms.txt
Use this file to discover all available pages before exploring further.
Architecture
Core packages
@sint/os-core
Main entrypoint. Boots all components, orchestrates governance, connects avatar reactions to policy events.
@sint/openclaw-adapter
The governance choke-point for OpenClaw. Every tool call passes through here before execution.
@sint/integration-langchain
LangChain callback handler and tool wrapper. SINT governance for LangChain agents.
Boot sequence
boot() does:
Connect to Avatar server
Verifies the 3D face is running; subscribes to expression and animation updates.
Tier classification
Every OpenClaw tool, MCP server, and node action is classified into a safety tier.| Tier | Description | OpenClaw examples |
|---|---|---|
| T0 | Observe only | read, web_search, web_fetch, memory_search, session_status |
| T1 | Reversible digital | write, edit |
| T2 | Requires governance | message.send, tts, image_generate, sessions_spawn, exec (non-elevated) |
| T3 | Physical / irreversible | exec (elevated), canvas.eval, nodes.invoke |
T0 calls never hit the network. They’re approved locally in microseconds. Governance adds zero latency to read operations.
Cross-system policies
These policies span multiple subsystems — no single-protocol safety system can enforce them.| Policy | When active | Denies | Why |
|---|---|---|---|
no-fs-while-moving | robot.moving | File writes | Prevents controller corruption during motion |
no-exec-while-moving | robot.moving | Shell execution | Prevents control-loop interference |
no-deploy-while-active | cmd_vel | Deploys | Can’t restart while velocity commands active |
no-network-while-armed | drone.armed | Network, exec | Safety-critical — no external access while armed |
Avatar reactions
Governance events route to visual avatar reactions.| Event | Expression | Animation | Widget |
|---|---|---|---|
| T0 approve | default | — | — |
| T1 approve | default | Head-Nod-Yes | Status (3s) |
| T2 deny | thinking | Thoughtful-Head-Shake | Status (8s) |
| T3 escalate | surprised | Thinking | Approval action (30s) |
Evidence HUD
Real-time viewer of the SHA-256 evidence ledger. Rolling window of governance decisions with chain-integrity verification.End-to-end example: voice command
“Jarvis, deploy the staging build”:Packages
| Package | Description | Tests |
|---|---|---|
@sint/os-core | Main entrypoint, lifecycle, orchestration | 9 |
@sint/openclaw-adapter | OpenClaw governance middleware | 42 |
@sint/integration-langchain | LangChain handler | 14 |
@sint/gate-capability-tokens, @sint/gate-policy-gateway, @sint/gate-evidence-ledger, and all 12 bridges.
Read next
Console
The visual control surface for SINT OS.
Quickstart
Run the OS locally in under five minutes.