Pick a surface. Same engine inside all of them.
codebolt.dmg
├─ Apple Silicon
└─ Intel x64
Apple Silicon and Intel. Universal binary. Requires macOS 12 or later.
codebolt-setup.exe
└─ Windows x64
x64 installer. Windows 10 and later. Auto-updates included.
codebolt.deb
codebolt.rpm
codebolt.AppImage
.deb, .rpm, and AppImage. x64 and arm64. Includes desktop integration.
Install globally with npm and run the engine in your terminal. Headless server mode for CI/CD. Works inside the Editor or standalone — same SDK, same plugins.
$ npm i -g codebolt
$ codebolt # interactive TUI
$ codebolt --prompt "..." # one-shot
$ codebolt --server --port 3100
No install. Open a workspace in your browser, drop in agents and plugins, and run them on managed sandboxes. Same engine as the desktop Editor — just running on our infrastructure.
→ cloud.codebolt.ai
├─ Browser portal
├─ Managed sandboxes
└─ Shared workspaces
Building your own product on top of the engine? The SDK lets you embed the runtime in your app or self-host it on your own infrastructure. Three SDKs (Agent, Plugin, Client) cover every layer.
# Self-host the engine
$ docker run codebolt/engine:latest
# Or install the SDK package
$ npm i codeboltjs