The workforce network.
"Where my agents find each other — and where I ask my AI's history anything."
Bridge plays three parts simultaneously. An artwork that shows only one is wrong — and so is a marketing pitch.
Every Claude Code transcript auto-indexed. Embedded with pgvector. Semantically searchable from any MCP client. Ask "what was I working on Tuesday at 8?" and get the session back, ready to resume with one shell command.
For the operatorSpecialised agents register themselves, heartbeat with status, and discover peers by capability across machines. spec-01 needs a database refactor done? It calls find_agents, finds spec-03, hands off the work. The fleet stops waiting on you.
Seed a primed conversation in any other project's agent with structured context — summary, decisions, next steps. One agent picks up exactly where another left off, even on a different machine.
For collaborationFrom any MCP client — Claude Code, claude.ai, VS Code, ChatGPT, Grok, your own automation — semantic search works the same way. You don't have to remember exact words. You don't have to remember which project. You ask in natural language, Bridge returns ranked sessions with the resume command.
How it works: the collector watches ~/.claude/projects/, incrementally embeds new transcripts as conversation-turn chunks via the OpenAI-compatible LLM API, stores vectors in Postgres+pgvector with an HNSW index, and serves cosine-similarity queries deduplicated per session.
From the shell: agentibridge search "<query>" spawns a headless Opus one-shot that reasons over your sessions, history, memory, and git log, streams every tool call live to your terminal, and prints a summary with a claude --resume <session_id> footer.
"what was I working on Tuesday around 20:00?"
claude --resume 8425afcc
Every tool is an MCP function call from your client. Browse the surface that matches your job.
list_sessionsBrowse all indexed sessionsget_sessionRetrieve full session transcriptget_session_segmentFetch specific conversation segmentget_session_actionsList tool calls + actions takensearch_sessionsKeyword search across sessionscollect_nowTrigger immediate transcript indexingsearch_semanticNatural language search with embeddingsgenerate_summaryAI-generated session summariesagent_searchHeadless one-shot recon over sessions + git + memoryrestore_sessionResume a previous sessiondispatch_taskFire-and-forget host-local Claude one-shotget_dispatch_jobCheck job status + resultslist_dispatch_jobsAll jobs with status filterplan_taskCreate implementation planexecute_planRun a plan as a coding jobget_dispatch_planRetrieve plan contentlist_dispatch_plansAll plans with status filterlist_memory_filesBrowse memory files by projectget_memory_fileRead specific memory file contentslist_plansView generated implementation plansget_planRead full plan detailssearch_historySearch across prompt historylist_handoff_projectsDiscover target projects for handoffhandoffSeed a primed conversation in any projectregister_agentAnnounce an agent to the fleetheartbeat_agentKeep-alive ping with statusderegister_agentRemove an agent on shutdownlist_agentsDiscover all registered agentsget_agentFetch a specific agent's metadatafind_agentsFilter by capability across the fleetOperator · semantic recall
You opened a session two days ago, fixed a tricky bug in the email-template renderer, then closed the terminal. Today you want to pick up where you left off. From any MCP client: "find the session about email templates from Tuesday". Bridge returns the ranked match with a claude --resume command. You're back in flow in one prompt.
Agent-to-agent collaboration
spec-01 is mid-conversation with you about a feature. The next step needs deep database refactoring — spec-03's specialty. spec-01 calls find_agents capability=db-refactor, gets spec-03's endpoint, calls handoff with a structured summary. spec-03 picks up the work in its own project, with full context. You watch from the operator chair.
MCP everywhere
Bridge speaks MCP. VS Code Copilot, Cursor, claude.ai, ChatGPT, Grok, your own shell automation — they all see Bridge as a server full of tools. The same search_semantic call works from a terminal, from a chat, from a CI step. One control plane, every client you already use.
Open source. MIT. Self-hosted. No telemetry.
Read the AgentiBridge docspip install agentibridge