Download Codebolt

Pick a surface. Same engine inside all of them.

Codebolt Editor — Desktop

Codebolt CLI — Terminal

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

          

Codebolt Cloud — Browser

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

          

Codebolt SDK — Embed

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

          

Need help getting started?