Skip to content

Agents

VibePod manages each agent as a Docker container. Credentials and config are persisted to ~/.config/vibepod/agents/<agent>/ on your host and mounted into the container on every run, so you only need to authenticate once.

Supported Agents

Agent Provider Shortcut Image
claude Anthropic vp c vibepod/claude:latest
gemini Google vp g vibepod/gemini:latest
opencode OpenAI vp o vibepod/opencode:latest
devstral (alias: vibe) Mistral vp d vibepod/devstral:latest
auggie Augment Code vp a vibepod/auggie:latest
copilot GitHub vp p vibepod/copilot:latest
codex OpenAI vp x vibepod/codex:latest

Alias note: vp run vibe resolves to vp run devstral.

First run & authentication

Start any agent for the first time with vp run <agent>. The container will prompt you to authenticate (browser OAuth, API key entry, or device flow depending on the provider). Once authenticated, credentials are written to the persisted config directory and reused on subsequent runs.

Auto-pulling the latest image

VibePod automatically pulls the latest image for an agent before every run. This ensures you always start with the most up-to-date container without manual intervention.

To disable auto-pull globally:

auto_pull: false

Or for a specific agent only:

agents:
  devstral:
    auto_pull: false

Per-agent auto_pull takes precedence over the global setting. For example, you can disable it globally but keep it on for a specific agent:

auto_pull: false          # skip pull by default
agents:
  claude:
    auto_pull: true       # except claude — always pull

You can also force a one-off pull via the CLI flag regardless of config:

vp run claude --pull

The resolution order is: --pull flag > per-agent auto_pull > global auto_pull.

Overriding the image

You can point VibePod at a custom image via an environment variable:

VP_IMAGE_CLAUDE=myorg/my-claude:dev vp run claude

Or permanently via your global config:

agents:
  claude:
    image: myorg/my-claude:dev

Image customization workflows

VibePod has a fixed set of supported agent IDs (claude, gemini, opencode, devstral, auggie, copilot, codex). The CLI also supports the alias vibe, which resolves to devstral. Image customization means changing the image used for one of those IDs.

1. Extend an existing image for an agent

Example: add tools to the default Claude image.

  1. Create a Dockerfile that extends the current base image.
# Dockerfile.claude
FROM vibepod/claude:latest

# Add project-specific utilities.
RUN apt-get update \
  && apt-get install -y --no-install-recommends ripgrep jq \
  && rm -rf /var/lib/apt/lists/*
  1. Build and tag the derived image.
docker build -f Dockerfile.claude -t myorg/claude-container:with-tools .
  1. Run with the new image (one-off) or set it in config (persistent).
# one-off
VP_IMAGE_CLAUDE=myorg/claude-container:with-tools vp run claude
# ~/.config/vibepod/config.yaml (or .vibepod/config.yaml)
agents:
  claude:
    image: myorg/claude-container:with-tools

2. Add a new image for an agent

Example: point opencode at a newly published internal image.

  1. Build/publish your image to a registry (for example registry.example.com/team/opencode:2026-03-01).
  2. Attach that image to the target agent in config.
agents:
  opencode:
    image: registry.example.com/team/opencode:2026-03-01
  1. Start the agent.
vp run opencode

You can also test quickly without editing config:

VP_IMAGE_OPENCODE=registry.example.com/team/opencode:2026-03-01 vp run opencode

Passing environment variables

Use -e / --env to inject variables at runtime:

vp run claude -e MY_VAR=value -e ANOTHER=123

Persistent per-agent env vars can also be set in config:

agents:
  claude:
    env:
      MY_VAR: value

Init scripts before startup

Use agents.<agent>.init to run shell commands in the container before the agent launches. This is useful for installing extra tools in a custom image workflow.

agents:
  codex:
    init:
      - apt-get update
      - apt-get install -y ripgrep jq

The init commands run on every vp run for that agent and must be idempotent.

IKWID mode (--ikwid)

Use --ikwid to enable each agent's built-in auto-approval / permission-skip mode when supported.

Agent --ikwid appended args
claude --dangerously-skip-permissions
gemini --approval-mode=yolo
devstral --auto-approve
copilot --yolo
codex --dangerously-bypass-approvals-and-sandbox
opencode Not supported
auggie Not supported

Example:

vp run codex --ikwid

Detached mode

Use -d / --detach to start an agent container in the background without attaching your terminal. The agent process starts immediately inside the container — -d only controls whether VibePod attaches your terminal to it.

Basic usage

vp run claude -d
# ✓ Started vibepod-claude-a1b2c3d4

The command prints the container name and returns immediately. You can also find it later with:

vp list --running

Interacting with a detached container

The agent is already running inside the container. You can exec into it to inspect state, install extra tools, or interact with the agent alongside its running process:

docker exec -it vibepod-claude-a1b2c3d4 bash

Use the container name printed by vp run -d or shown in vp list.

Tip

If you need to run setup commands before the agent launches, use agents.<agent>.init or extend the base image instead — these run inside the container before the agent process starts.

Managing detached containers

Check running agents:

vp list              # shows running + configured agents
vp list --running    # shows only running agents
vp list --json       # machine-readable output

Stop a specific agent or all agents:

vp stop claude       # graceful stop (10 s timeout)
vp stop claude -f    # force stop immediately
vp stop --all        # stop every VibePod container

Caveats

  • auto_remove (default: true) — By default, containers are automatically removed when they stop. This means you cannot restart a stopped detached container; you need to vp run again. Set auto_remove: false in your configuration if you want stopped containers to persist.
  • No built-in re-attach — VibePod does not currently have a command to re-attach your terminal to a detached container. Use docker attach <container> or docker exec -it <container> bash directly.
  • Session logging — Sessions started with --detach are not recorded in the VibePod session log since VibePod does not capture the interactive I/O. If you need session logging, run without --detach.

Connecting to a Docker Compose network

When your workspace contains a docker-compose.yml or compose.yml, VibePod detects it and offers to connect the agent container to an existing network so it can reach your running services.

You can also specify the network explicitly:

vp run claude --network my-compose-network

Individual agents

Claude (Anthropic)

vp run claude   # or: vp c

Credentials are stored in ~/.config/vibepod/agents/claude/. On first run, Claude's interactive setup will guide you through API key configuration.

Gemini (Google)

vp run gemini   # or: vp g

OpenCode (OpenAI)

vp run opencode   # or: vp o

Devstral / Vibe (Mistral)

vp run devstral   # or: vp d
vp run vibe       # alias of devstral

Note

Devstral runs under your host user (uid:gid) and requires the linux/amd64 platform. On Apple Silicon, Docker's Rosetta emulation is used automatically.

Auggie (Augment Code)

vp run auggie   # or: vp a

Copilot (GitHub)

vp run copilot   # or: vp p

Codex (OpenAI)

vp run codex   # or: vp x