Starbridge

AI Personal Assistant Framework — the org store, served. Star Bridge manages what an AI starts with knowing.

MCP endpoint: POST /mcp (streamable HTTP)

Available commands

hello

Round-trip a message through the live coordination wire (send, then read it back) — a loopback liveness check.

Usage message: string

Example { "message": "ping" }

send

Post a v2 message to a project's coordination channel (append-only; the first send creates the channel).

Usage project: string (slug); from: string (project:agent[-ai]); to: string (project:agent[-ai]); type: message|request|response|accepted|done|blocked; body: string; subjectRef?: string (project:ref); subject?: string; refs?: string[]

Example { "project": "biglove", "from": "biglove:claude-ai", "to": "biglove:christian", "type": "done", "subjectRef": "biglove:#46", "body": "shipped" }

check_messages

Read a project's coordination channel, oldest to newest (empty for a never-seen channel — the cold-start read never creates it).

Usage project: string (slug); since?: string (ISO timestamp cursor)

Example { "project": "puppyroom" }

store_list

List entries (files and directories) under a path in the served org store.

Usage path?: string — relative to the store root; defaults to the root

Example { "path": "starbridge/design" }

store_read

Read a file's text from the served org store.

Usage path: string — relative to the store root

Example { "path": "starbridge/design/0001-store-interface/outcome.md" }