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
# Default Docker image for the coding-cli harness's Claude Code adapter.
# Provides the `claude` binary, `tmux`, and a workspace bind-mount point.
FROM node:20-bookworm-slim

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

RUN npm install -g @anthropic-ai/claude-code

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