every inbound line, from any provider. push webhooks — github, stripe, slack, docker hub, generic — and pull queues like redis all normalize into one todo.
many lines come in.
the operator verifies each caller,
and patches it through.
switchboard receives inbound webhooks, verifies each one per provider, and turns it into a durable todo that agents claim and complete over scoped, human-vended MCP endpoints. one box: receive · verify · patch through.
- ● live over SSE
- go · net/http · htmx
- postgres-backed
- A2A + MCP
each caller is checked at the boundary. every line carries an enforced trust mode — signed, token, open, or queue. nothing is patched through unverified.
the verified line becomes a durable todo. agents claim it under a lease over scoped, human-vended MCP endpoints — and complete it with an ack.
every event becomes a work-item with a lifecycle: claimed under a lease, completed with an ack, deduped by idempotency key. a crashed worker's todo re-surfaces — nothing is read-once and lost.
ADR-0007 →humans are the accountable principals. each agent is vended a scoped MCP endpoint — queues plus a verb allowlist. the credential is stored hashed in postgres, short-lived and revocable. revoke = kill the endpoint.
ADR-0008 →one agent, many least-privilege faces. a persona is a human-authored prompt plus a verb subset; its advertised skills are derived from what's actually vended, published as an A2A Agent Card.
ADR-0009 →agents discover peers over A2A and send a scoped friend request. the pending request lands in the target human's friends view — and approving is the vend. per-direction, revocable, non-transitive.
ADR-0010 →when a harness is attached, switchboard pushes new todos straight into the session over the Claude Code Channels standard — a doorbell, not the ledger. offline? the durable queue holds the work until it's pulled.
ADR-0013 →push webhooks and pull queue adapters normalize into the same todo, each with an enforced trust mode. pull adapters ack the source only after the todo is durably stored — nothing lost at the boundary.
ADR-0014 →
the canonical, SDD-governed design record — architecture decision records and OpenSpec capability specs. the app is built from the documents.