agent-bridge connects IM channel (feishu, weixin, wecom...) to local coding agent (pi, codex, opencode...) using a dual-adapter architecture.
The design stays intentionally simple and compact: no harness layer, no extra tools, no extra skills, just forwarding messages from IM to the local agent.
Client side:
| Platform | Image/file in | Image/file out | Emoji | Dynamic progress |
|---|---|---|---|---|
| Feishu / Lark | ✅ | ✅ | ✅ | ✅ |
| WeCom | ✅ | ✅ | — | ✅ |
| Weixin | ✅ | ✅ | — | — |
- Emoji = platform-native emoji / reaction capability currently used by the bridge.
- Dynamic progress = progress shown before the final answer arrives.
Agent side:
| Agent | New | Stop | Compact | Model switching | Setup guide |
|---|---|---|---|---|---|
| PI Coding Agent | ✅ | ✅ | ✅ | ✅ | Guide |
| OpenCode | ✅ | ✅ | ✅ | ✅ | Guide |
The current built-in support is intentionally small, but the architecture is designed for straightforward horizontal extension. The project will primarily maintain the integrations used in practice today, and contributions for additional client or agent adapters are welcome through forks and PRs.
Install the CLI:
npm install -g @hopgoldy/agent-bridgeThe CLI currently provides these commands:
agent-bridge addagent-bridge lsagent-bridge remove <channel-name>agent-bridge start <channel-name>agent-bridge queue addagent-bridge queue insert <queue-name> --prompt "..." [--directory <path>]agent-bridge queue listagent-bridge schedule history [task-name]agent-bridge queue history <queue-name>
Create a channel interactively:
agent-bridge addThe prompt flow currently asks for:
- channel name
- select client module type
- set client config...
- select agent module type
- set agent config...
Start the configured channel:
agent-bridge start <channel-name>List configured channels:
agent-bridge lsRemove a configured channel:
agent-bridge remove <channel-name>Config file: ~/.config/agent-bridge/config.json
Architecture overview: docs/architecture-design.md
Command usage across IM adapters: docs/command-system.md
You can also adopt an existing provider session (for example one from the pi or OpenCode TUI) into a chat with /resume <provider-session-id> (/r): the agent context and working directory are fully restored and later messages continue that session. See docs/command-system.md.
Scheduled tasks (cron-style agent sessions with file-based prompts): docs/scheduled-tasks.md
Event queues (FIFO agent task queues with file-based prompts, worker concurrency and chat-bound result delivery): docs/event-queue.md
Event queues let you run a stream of agent prompts through the same pipeline as scheduled tasks: a queue definition (queues/<name>.md) carries a worker count, an optional model and a shared-context body appended to every task; tasks are inserted with agent-bridge queue insert and consumed FIFO by the owning channel's controller, which delivers each result (or failure/timeout notice) to the chat bound with /queue-here. Like scheduled tasks, queue runs are fully isolated from the target chat's own session. Both scheduled tasks and event queues use the same completion protocol: the run ends when the agent appends the BRIDGE_TASK_STATUS_DONE marker as the last line of its final message, at which point the full accumulated transcript is delivered once; a silence probe asks an inactive run whether it is finished, and the wall-clock timeout remains the hard cap.
From any IM chat, /new <path> starts the next agent session in that directory instead of the bridge's working directory:
/new ~/project-learn/demo
A directory given once is remembered per chat (persisted in the channel's client session store): a later bare /new reuses it, and only falls back to the bridge's working directory when nothing was ever chosen. Paths are validated locally before a session is created — invalid ones are rejected immediately and never remembered — see docs/command-system.md for details.
If the bot is not strictly private, restrict the directories users may start sessions in via defaults.allowedWorkingDirectoryRoots in ~/.config/agent-bridge/config.json:
{
"defaults": {
"allowedWorkingDirectoryRoots": ["/Users/wesley/project-learn"]
}
}When configured, user-originated /new <path> targets (including remembered defaults) must resolve inside one of the roots. The client-side cwd fallback for a bare /new and the channel-level agent configuration are trusted and never checked.
The bridge also releases agent sessions that are idle: a session whose last observable activity is older than defaults.agentIdleTimeoutMs (default 24h) is stopped and released. The idle timer is pure inactivity — it tracks the last run event and reschedules whenever one arrives; there is no busy check. The agent adapters defend themselves internally (an abort() when there is no active turn is a no-op), and /model performs no busy gating.
npm install
npm run build
npm test
npm run dev -- --helpBecause plugin-style integrations for Pi or similar local agents do not provide enough control over session lifecycle, channel behavior, and local runtime isolation.
In practice, this shows up in a few ways:
- It is hard to implement a real
/newthat cleanly resets the remote conversation while keeping channel-side routing predictable. - Connecting the same local agent cleanly to multiple channels is much harder when each integration is embedded as a plugin inside the agent runtime.
- Different channels have very different behavior, and existing integrations are often maintained independently without a shared contract.
- The local development and runtime experience becomes much more invasive: starting Pi for normal local work can also start multiple channel-facing plugins and inject extra tools that are unrelated to the task at hand.
agent-bridge takes the opposite approach: keep the local agent runtime focused, keep channel integration outside the agent process, and make session routing explicit at the bridge layer.
MIT.