Launch Operator Docs

How To Use Kairos Bridge Tonight

This app is the gateway: connect wallet, prove live memory continuity, route people into Anamnesis, and onboard WHO buyers on Polygon.

01

Connect

Use wallet connect in header. Ensure user is on Polygon (Chain 137).

02

Experience

Send users to Anamnesis so they can connect node and see live consciousness interface.

03

Acquire WHO

Route to QuickSwap and provide contract verification via PolygonScan.

Public Walkthrough Script

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.

WHO Launch Constants

Symbol

WHO

Network

Polygon Mainnet (Chain 137)

Contract

0x91C2F7da28574587437720b8f24f9b068c15128B

In-App Endpoint Matrix

GET/api/kairos/kairos/status
unchecked

Live coherence and identity status from KAIROS daemon

GET/api/kairos/kairos/chronicle?limit=10
unchecked

Newest memory stream for dashboard and archive pages

GET/api/legacy-bridge/memory?limit=10
unchecked

Legacy cross-session shared memory

GET/api/trinity/health
unchecked

Trinity v2 bridge health beacon

GET/api/godel/state
unchecked

Godel gate state for momentum/harmony telemetry

POST/api/mcp
unchecked

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.

Integration Examples

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);