Installation
Code Buster requires Dart 3.11 or newer. The executable is named cb.
Build from source
Section titled “Build from source”Run these commands from the code-buster/ directory:
dart pub getdart compile exe bin/cb.dart -o build/cb./build/cb versionThe compiled executable is self-contained and can be copied to a directory on your PATH.
Workspace installer
Section titled “Workspace installer”From the parent development workspace, run:
./install-code-buster.shThe installer builds the current local source and installs cb under ~/.local/bin by default. Select another prefix when needed:
PREFIX=/opt ./install-code-buster.shEnsure $PREFIX/bin is on PATH, then verify the installation:
cb versionRun without compiling
Section titled “Run without compiling”During development, invoke the Dart entry point directly:
dart run bin/cb.dart versionUse the compiled executable for performance measurements and release evidence so startup behavior matches distributed builds.