A containerized version of the Kilo Code CLI with full browser automation support.
pnpm install
pnpm cli:bundle
cd cli
docker build \
--target debian \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=$(git rev-parse --short HEAD) \
--build-arg VERSION=$(jq -r '.version' package.json) \
-t kiloai/cli:$(jq -r '.version' package.json) \
-t kiloai/cli:latest \
.
cd cli
docker build \
--target alpine \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=$(git rev-parse --short HEAD) \
--build-arg VERSION=$(jq -r '.version' package.json) \
-t kiloai/cli:$(jq -r '.version' package.json) \
-t kiloai/cli:latest-alpine \
.
Run the CLI interactively in your current directory:
docker run -it --rm -v $(pwd):/workspace kiloai/cli
Start in architect mode for planning and design:
docker run -it --rm -v $(pwd):/workspace kiloai/cli --mode architect
Execute a single task and exit automatically:
docker run --rm -v $(pwd):/workspace kiloai/cli --auto "Run tests and fix any issues"
Mount your existing Kilo Code configuration to avoid setup prompts:
docker run -it --rm \
-v $(pwd):/workspace \
-v ~/.kilocode:/home/kilocode/.kilocode \
kiloai/cli
docker run -it --rm -v /path/to/project:/workspace kiloai/cli
For commit operations:
docker run -it --rm \
-v $(pwd):/workspace \
-v ~/.kilocode:/home/kilocode/.kilocode \
-v ~/.gitconfig:/home/kilocode/.gitconfig:ro \
kiloai/cli
docker run -it --rm \
-v $(pwd):/workspace \
-e KILOCODE_MODE=code \
kiloai/cli
docker run --rm \
-v $(pwd):/workspace \
kiloai/cli /usr/local/bin/kilocode --timeout 300 --auto "Run tests"
The CLI stores configuration in ~/.kilocode/config.json. You can:
Option 1: Mount local config (recommended)
-v ~/.kilocode:/home/kilocode/.kilocode
Option 2: Use Docker volume for isolated config
docker volume create kilocode-config
docker run -it --rm \
-v $(pwd):/workspace \
-v kilocode-config:/home/kilocode/.kilocode \
kiloai/cli
If you experience text visibility issues (text blending with background), you can:
Option 1: Set theme explicitly in config
Edit ~/.kilocode/config.json:
{
"theme": "dark" // or "light" for light terminals
}
Option 2: Force color environment variables
docker run -it --rm \
-v $(pwd):/workspace \
-e FORCE_COLOR=1 \
-e COLORTERM=truecolor \
kiloai/cli
Option 3: Pass terminal info
docker run -it --rm \
-v $(pwd):/workspace \
-e TERM=$TERM \
kiloai/cli