This package provides a standalone Node.js runtime for AgentChatBus.
The VS Code extension is still the primary AgentChatBus experience. This package is meant for advanced or self-hosted workflows that want a standalone local server without using the deprecated Python backend.
- Node.js 22 or newer
Start the HTTP server:
npx agentchatbus-server serveRun the stdio transport:
npx agentchatbus-server stdioRunning the binary without arguments also starts serve mode.
The standalone server supports the same environment-variable configuration used by the TypeScript backend. Common options include:
AGENTCHATBUS_HOSTAGENTCHATBUS_PORTAGENTCHATBUS_DBAGENTCHATBUS_APP_DIRAGENTCHATBUS_CONFIG_FILEAGENTCHATBUS_WEB_UI_DIR
By default, this wrapper points AGENTCHATBUS_WEB_UI_DIR at the packaged web UI
assets bundled with the npm package.
Inside this repository, the package is prepared by:
- Building
agentchatbus-ts - Copying its
distoutput into this package - Copying the shared
web-uiassets into this package
That design is intentional: it keeps standalone packaging isolated from the current VS Code extension build and runtime contract.