Skip to content

Commit d8520ef

Browse files
committed
Adapt docs for 0.17.0, bump version
1 parent 00a60c7 commit d8520ef

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
</p>
1414

1515
VibePod is a unified CLI (`vp`) for running AI coding agents in isolated
16-
Docker containers — no required configuration, no setup. Just
16+
Docker or Podman containers — no required configuration, no setup. Just
1717
`vp run <agent>`. Includes built-in local metrics collection, HTTP traffic
1818
tracking, and an analytics dashboard to monitor and compare agents side-by-side.
1919

2020
## Features
2121

2222
-**Zero config** — no setup required; `vp run <agent>` just works. Optional YAML for custom configuration
23-
- 🐳 **Isolated agents** — each agent runs in its own Docker container
23+
- 🐳 **Isolated agents** — each agent runs in its own Docker or Podman container
2424
- 🔀 **Unified interface** — one CLI for Claude, Gemini, Codex, Devstral/Vibe, Copilot, Auggie, Pi, Agy & more
2525
- 🧩 **Skills** — install reusable prompt recipes per-project or per-user with `vp skills add`
2626
- 📊 **Local analytics dashboard** — track usage and HTTP traffic per agent, plus token metrics

docs/agents/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Agents
22

3-
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.
3+
VibePod manages each agent as a Docker or Podman 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.
44

55
## Supported Agents
66

@@ -24,7 +24,7 @@ Start any agent for the first time with `vp run <agent>`. The container will pro
2424

2525
## Auto-pulling the latest image
2626

27-
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.
27+
VibePod automatically pulls the latest image for an agent before every run and shows pull progress while layers download. This ensures you always start with the most up-to-date container without manual intervention.
2828

2929
To disable auto-pull globally:
3030

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# VibePod
22

3-
**One CLI for all AI coding agents — running in Docker containers.**
3+
**One CLI for all AI coding agents — running in Docker or Podman containers.**
44

5-
VibePod (`vp`) lets you run any supported AI coding agent in an isolated Docker container, pointed at any workspace directory, with a single command. Agent credentials, config, and session logs are persisted across runs without touching your host environment.
5+
VibePod (`vp`) lets you run any supported AI coding agent in an isolated Docker or Podman container, pointed at any workspace directory, with a single command. Agent credentials, config, and session logs are persisted across runs without touching your host environment.
66

77
## Why VibePod?
88

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ vp run claude
8888
VibePod will:
8989

9090
1. Pull the agent image if not already present.
91-
2. Create a dedicated Docker network (`vibepod-network`).
91+
2. Create a dedicated Docker or Podman network (`vibepod-network`).
9292
3. Mount your current directory as the workspace inside the container.
9393
4. Start the agent container and attach your terminal to it.
9494

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vibepod"
3-
version = "0.16.0"
3+
version = "0.17.0"
44
description = "One CLI for containerized AI coding agents"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/vibepod/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""VibePod package."""
22

3-
__version__ = "0.16.0"
3+
__version__ = "0.17.0"

src/vibepod/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from platformdirs import user_config_dir
99

1010
APP_NAME = "vibepod"
11-
VERSION = "0.16.0"
11+
VERSION = "0.17.0"
1212

1313
CONFIG_DIR = Path(user_config_dir(APP_NAME))
1414
GLOBAL_CONFIG_FILE = CONFIG_DIR / "config.yaml"

0 commit comments

Comments
 (0)