Cli Agents Container banner
chmouel chmouel

Cli Agents Container

Development community

Description

Nightly build container of codex/claude-code/gemini-cli/opencode agent

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

AI Agents Auto-Build Docker Image

Automated daily builds of an Ubuntu-based Docker image with popular AI coding assistants pre-installed.

Included Tools

  • @openai/codex - OpenAI Codex CLI coding agent
  • @anthropic-ai/claude-code - Anthropic Claude Code CLI
  • @google/gemini-cli - Google Gemini CLI
  • opencode - OpenCode AI assistant

Current Versions

Tool Version
node 20.19.1
codex codex-cli 0.151.0
claude 2.1.251 (Claude Code)
gemini 0.57.0
opencode 1.18.25
copilot GitHub Copilot CLI 1.0.82.
sg ========================================================================
yq yq (https://github.com/mikefarah/yq/) version v4.53.6
gh gh version 2.97.0 (2026-07-31)
glab glab 1.115.0 (c3612c8de)
kubectl Client Version: v1.37.0
stern version: 1.34.0
rg ripgrep 15.1.0
fd fdfind 10.3.0
jq jq-1.8.1
shellcheck 0.11.0

_Last updated: 2026-08-30T08:14:05Z_

Usage

Pull from GitHub Container Registry

docker pull ghcr.io/chmouel/agents-image:latest

Run the container

docker run -it ghcr.io/chmouel/agents-image:latest

Run a specific tool

# Run Codex
docker run -it ghcr.io/chmouel/agents-image:latest codex --help

# Run Gemini
docker run -it ghcr.io/chmouel/agents-image:latest gemini --help

# Run Claude
docker run -it ghcr.io/chmouel/agents-image:latest claude --help

# Run OpenCode
docker run -it ghcr.io/chmouel/agents-image:latest opencode --help

Install additional npm packages

The image includes Node.js, so you can install additional npm packages globally:

docker run -it ghcr.io/chmouel/agents-image:latest bash
# Inside container:
npm install -g 

Build Locally

docker build -t agents-image .

For multi-architecture builds:

docker buildx build --platform linux/amd64,linux/arm64 -t ag