Skip to content

Installation

Code Buster requires Dart 3.11 or newer. The executable is named cb.

Run these commands from the code-buster/ directory:

Terminal window
dart pub get
dart compile exe bin/cb.dart -o build/cb
./build/cb version

The compiled executable is self-contained and can be copied to a directory on your PATH.

From the parent development workspace, run:

Terminal window
./install-code-buster.sh

The installer builds the current local source and installs cb under ~/.local/bin by default. Select another prefix when needed:

Terminal window
PREFIX=/opt ./install-code-buster.sh

Ensure $PREFIX/bin is on PATH, then verify the installation:

Terminal window
cb version

During development, invoke the Dart entry point directly:

Terminal window
dart run bin/cb.dart version

Use the compiled executable for performance measurements and release evidence so startup behavior matches distributed builds.