Devcontainer template for AI agent development using the agent-dev-base image.
- Use this template — click "Use this template" on GitHub, or clone directly
- Open in VS Code — VS Code will detect
.devcontainer/devcontainer.jsonand offer to reopen in container - Start building —
gc,bd,claude,codex,ampare all available
- Gas City (
gc) for multi-agent orchestration - Beads (
bd) for work tracking - AI CLIs: Claude, Codex, Amp
- Docker-in-Docker for container workflows
- Claude config mounted from host (
~/.claude)
Add language runtimes or project-specific tools in .devcontainer/devcontainer.json:
{
"features": {
"ghcr.io/devcontainers/features/node:1": { "version": "20" },
"ghcr.io/devcontainers/features/python:1": { "version": "3.12" }
}
}Or build a downstream Dockerfile:
{
"build": {
"dockerfile": "Dockerfile"
}
}