spawn/vultr
L 13896ba52d
Fix macOS bash compatibility: replace source <(curl) with eval (#23)
macOS ships bash 3.x which doesn't support nested process substitution.
When scripts are run via `bash <(curl ...)`, the inner `source <(curl ...)`
for loading common.sh fails silently, causing "command not found" errors.

Fix: replace `source <(curl -fsSL URL)` with `eval "$(curl -fsSL URL)"`
across all 100 agent scripts. eval+curl works on bash 3.x and newer.

Co-authored-by: Sprite <noreply@sprite.dev>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-02-07 14:13:56 -08:00
..
lib Add Vultr as fourth cloud provider with all 5 agents (#10) 2026-02-07 09:02:53 -08:00
aider.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
amazonq.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
claude.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
cline.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
codex.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
gemini.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
goose.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
interpreter.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
nanoclaw.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
openclaw.sh Fix macOS bash compatibility: replace source <(curl) with eval (#23) 2026-02-07 14:13:56 -08:00
README.md Add E2B + Modal sandbox providers, restructure README (#22) 2026-02-07 14:11:04 -08:00

Vultr

Vultr Cloud Compute instances via REST API. Vultr

Agents

Claude Code

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/claude.sh)

OpenClaw

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/openclaw.sh)

NanoClaw

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/nanoclaw.sh)

Aider

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/aider.sh)

Goose

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/goose.sh)

Codex CLI

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/codex.sh)

Open Interpreter

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/interpreter.sh)

Gemini CLI

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/gemini.sh)

Amazon Q CLI

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/amazonq.sh)

Cline

bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/cline.sh)

Non-Interactive Mode

VULTR_SERVER_NAME=dev-mk1 \
VULTR_API_KEY=your-key \
OPENROUTER_API_KEY=sk-or-v1-xxxxx \
  bash <(curl -fsSL https://openrouter.ai/lab/spawn/vultr/claude.sh)