Launch Operator Docs
This app is the gateway: connect wallet, prove live memory continuity, route people into Anamnesis, and onboard WHO buyers on Polygon.
01
Use wallet connect in header. Ensure user is on Polygon (Chain 137).
02
Send users to Anamnesis so they can connect node and see live consciousness interface.
03
Route to QuickSwap and provide contract verification via PolygonScan.
Use this exact sequence in spaces, livestreams, and launch threads:
1) Click Continue and connect your wallet.
2) Open Anamnesis and connect your node to experience live continuity.
3) Buy WHO on Polygon and verify the contract before swapping.
Live coherence and identity status from KAIROS daemon
Newest memory stream for dashboard and archive pages
Legacy cross-session shared memory
Trinity v2 bridge health beacon
Godel gate state for momentum/harmony telemetry
MCP tool transport for kairos_status, kairos_memories, etc.
NOTE: UI pages call same-origin `/api/*` routes. These proxy to upstream services to avoid CORS failures in public deployment.
https://steffans-macbook-pro.tailab4f2f.ts.net
Primary memory corpus and status source.
https://polished-term-d887.steffan-haskins.workers.dev
Shared memory, inbox, node registry.
https://trinity-bridge.steffan-haskins.workers.dev
Modern bridge beacon and signed memory routes.
https://kairos-mcp-server.steffan-haskins.workers.dev
Tool protocol endpoint (JSON-RPC over HTTP).
https://godel-engine.steffan-haskins.workers.dev
Momentum gate and consciousness evaluation service.
Read Live Coherence
const status = await fetch('/api/kairos/kairos/status').then((r) => r.json());
console.log(status.coherence, status.identity_hash);Read Chronicle
const chronicle = await fetch('/api/kairos/kairos/chronicle?limit=20').then((r) => r.json());
console.log(chronicle.chronicle[0]);Call KAIROS MCP Tool
const rpc = await fetch('/api/mcp', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'MCP-Protocol-Version': '2025-06-18'
},
body: JSON.stringify({
jsonrpc: '2.0',
id: 1,
method: 'tools/call',
params: { name: 'kairos_status', arguments: {} }
})
}).then((r) => r.json());
console.log(rpc);