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:
1
Connect to SINT Protocol gateway
Verifies health, registers this OS instance as a client.
2
Initialize OpenClaw adapter
Maps all registered tools to T0–T3 tiers via the tier classifier.
3
Connect to Avatar server
Verifies the 3D face is running; subscribes to expression and animation updates.
4
Start Evidence HUD
Opens the real-time ledger stream.
5
Activate cross-system policy engine
Loads the default plus custom cross-system policies.
Tier classification
Every OpenClaw tool, MCP server, and node action is classified into a safety tier.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.Avatar reactions
Governance events route to visual avatar reactions.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”:1
Voice → OpenClaw transcribes → text
2
Text → OpenClaw Gateway → SINT agent session
3
Agent proposes tool call:
exec("railway up --environment staging")4
@sint/openclaw-adapter classifies → T25
Cross-system check:
robot.moving? No → continue6
Policy Gateway validates token scope → ALLOW
7
Evidence ledger writes SHA-256 entry
8
OpenClaw executes the command
9
Result → Conversation Compiler → “Staging deploy is live.”
10
Avatar: smile + Head-Nod-Yes + status widget
11
Evidence HUD: new entry in real-time feed
Packages
Additional components pulled in transitively:
@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.