atomr-agents-coding-cli-isolator 0.21.0

Isolator trait + Local and Docker implementations for the coding-cli harness. Spawns CLI processes on the host or in a container with optional PTY.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Default Docker image for the coding-cli harness's Antigravity CLI (agy) adapter.
FROM debian:bookworm-slim

RUN apt-get update \
 && apt-get install -y --no-install-recommends \
      git curl ca-certificates tmux bash \
 && rm -rf /var/lib/apt/lists/*

# Installs the Go-based `agy` binary to ~/.local/bin (the legacy
# @google/gemini-cli is deprecated; sunset 2026-06-18).
RUN curl -fsSL https://antigravity.google/cli/install.sh | bash
ENV PATH="/root/.local/bin:${PATH}"

WORKDIR /workspace
ENTRYPOINT []
CMD ["agy", "--help"]