Concierge

A monorepo of internal Slack agents that share one runtime and a cross-agent routing protocol. Each bot answers questions in its own domain, hands off to the right peer when a question isn't its own, and learns from in-thread corrections — the way a colleague would refer you down the hall, then remember what you told them.

TypeScript Claude Agent SDK Slack (Bolt · Socket Mode) Docker
#
ask-eng
RF
Robert F. 9:41 AM
@product-agent how does the operator app handle writes while a device is offline?

A teammate @-mentions product-agent in #ask-eng with a question about the codebase.

P
product-agent APP 9:41 AM
Offline writes are cached on the device and replayed on reconnect.

When the device drops connectivity, each mutation is written to a local queue and flushed to the sync API in order once it's back online. Field-level conflicts resolve last-write-wins, and the queue is persisted to the browser's localStorage so a refresh doesn't lose pending edits.

Confidence: High Sources mobile/src/sync/offline.ts mobile/src/sync/queue.ts

product-agent reads the product's actual source code to answer — it clones the repos and greps them live, then cites the exact files. Every reply carries a confidence level and its sources.