Agent Context Bridge is a local-first TypeScript ESM project. The core design is adapter-driven: agent-specific parsers normalize local session records into a shared event model, and renderers turn those events into concise target-agent handoff packets.
.agent-bridge/.| Area | Responsibility |
|---|---|
src/adapters/ |
Agent-specific session detection and parsing. |
src/agents/ |
Built-in agent definitions, aliases, and adapter registry. |
src/events/ |
Timeline and search over normalized events. |
src/renderers/ |
Target-specific handoff rendering. |
src/registry/ |
Local capability mapping packs and negotiation. |
src/protocol/ |
Protocol descriptor and agent compatibility reports. |
src/policy/ |
Default-deny policy evaluation. |
src/remote/ |
Encrypted local-directory sync bundles. |
src/team/ |
Hash-chained team ledger. |
src/collab/ |
Project-local collaboration session state. |
src/integrations/ |
Low-coupling integrations such as CC Switch. |
src/ui/ |
Small local browser UI backed by the same services. |
bridge detect creates project-local storage and default registry mappings.raw_ref pointers..agent-bridge/packets/..agent-bridge/ is runtime state and should not be committed.