@banbury-cheese/voxagent-local-bridge
v0.1.2
Published
Local WebSocket bridge for VoxAgent to run Codex or Claude on a user's machine.
Maintainers
Readme
@banbury-cheese/voxagent-local-bridge
Local WebSocket bridge for VoxAgent. It exposes a localhost-only endpoint that a VoxAgent room running in the browser can use to trigger Codex or Claude on the user's own machine.
Install
npm install -g @banbury-cheese/voxagent-local-bridgeOr run it without a global install:
npx @banbury-cheese/voxagent-local-bridge --provider codex --workspace-root ~/CodeUsage
voxagent-local-bridge --provider codex --workspace-root ~/CodeOptional flags:
--provider codex|claude--port 4571--workspace-root /path/to/projects--allow-origin https://app.yourdomain.com
How it works
- VoxAgent in the browser connects to
ws://127.0.0.1:4571. - The bridge validates the browser origin.
- The browser sends build requests over WebSocket.
- The bridge runs
codex execorclaude -plocally inside:<workspace-root>/voxagent-local-builds/<buildId>
- The bridge returns structured build results back to the browser.
By default, the bridge does not publish or deploy apps publicly. It builds them locally and returns the workspace path plus a summary.
