Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,14 @@ npm install
docker compose up -d
```

For projects using a specific language version (Ruby, Python, etc.), install it via mise in the runtime script. mise automatically picks up `.ruby-version`, `.python-version`, `.node-version`, and `.tool-versions` files:

```bash
# your-project/.agent-vm.runtime.sh
mise install
bundle install
```

### MCP servers

The base VM comes with [Chrome DevTools MCP](https://github.com/ChromeDevTools/chrome-devtools-mcp) pre-configured for Claude, giving the agent headless browser access.
Expand Down Expand Up @@ -201,6 +209,7 @@ Each VM is fully isolated — agents must authenticate independently inside thei
|----------|----------|
| Core | git, curl, wget, jq, build-essential, unzip, zip |
| Python | python3, pip, venv |
| Version manager | [mise](https://mise.jdx.dev/) (Ruby, Python, Node, etc.) |
| Node.js | Node.js 24 LTS (via NodeSource) |
| Search | ripgrep, fd-find |
| Utilities | htop, GitHub CLI (gh) |
Expand Down
9 changes: 8 additions & 1 deletion agent-vm.setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,18 @@ sudo apt-get install -y \
ripgrep fd-find htop \
unzip zip \
ca-certificates \
iptables
iptables \
libssl-dev libreadline-dev zlib1g-dev libyaml-dev libffi-dev

# Set zsh as default shell
sudo chsh -s /usr/bin/zsh "$(whoami)"

# Install mise (polyglot version manager for Ruby, Python, Node, etc.)
echo "Installing mise..."
curl https://mise.run | sh
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshrc
echo 'eval "$(~/.local/bin/mise activate zsh)"' >> ~/.zshenv

# Install Docker from official repo (includes docker compose)
echo "Installing Docker..."
sudo install -m 0755 -d /etc/apt/keyrings
Expand Down