mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-30 12:59:32 +00:00
* Add RunPod GPU cloud provider with all 13 agent scripts - runpod/lib/common.sh: GraphQL API wrapper, pod creation/termination, SSH connectivity (direct TCP or proxy via ssh.runpod.io) - 13 agent scripts: claude, openclaw, nanoclaw, aider, goose, codex, interpreter, gemini, amazonq, cline, gptme, opencode, plandex - runpod/README.md with usage docs and environment variable reference - manifest.json: RunPod cloud entry + all matrix entries as implemented Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Add UpCloud cloud provider with all 13 agent scripts - upcloud/lib/common.sh: UpCloud API wrapper with Basic Auth, server provisioning, SSH connectivity, base tool installation - 13 agent scripts: claude, openclaw, nanoclaw, aider, goose, codex, interpreter, gemini, amazonq, cline, gptme, opencode, plandex - upcloud/README.md with usage docs and env var reference - manifest.json updated with UpCloud cloud entry and 13 matrix entries UpCloud uses HTTP Basic Auth (username:password) instead of Bearer tokens. Servers are provisioned via POST /1.3/server with SSH keys injected via login_user. Ubuntu template UUID is dynamically resolved from the API. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Sprite <noreply@sprite.dev> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 KiB
2 KiB
UpCloud
UpCloud cloud servers via REST API. UpCloud
Agents
Claude Code
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/claude.sh)
OpenClaw
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/openclaw.sh)
NanoClaw
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/nanoclaw.sh)
Aider
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/aider.sh)
Goose
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/goose.sh)
Codex CLI
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/codex.sh)
Open Interpreter
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/interpreter.sh)
Gemini CLI
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/gemini.sh)
Amazon Q CLI
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/amazonq.sh)
Cline
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/cline.sh)
gptme
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/gptme.sh)
OpenCode
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/opencode.sh)
Plandex
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/plandex.sh)
Non-Interactive Mode
UPCLOUD_SERVER_NAME=dev-mk1 \
UPCLOUD_USERNAME=your-api-username \
UPCLOUD_PASSWORD=your-api-password \
OPENROUTER_API_KEY=sk-or-v1-xxxxx \
bash <(curl -fsSL https://openrouter.ai/lab/spawn/upcloud/claude.sh)
Environment Variables
| Variable | Description | Default |
|---|---|---|
UPCLOUD_USERNAME |
UpCloud API username | (prompted) |
UPCLOUD_PASSWORD |
UpCloud API password | (prompted) |
UPCLOUD_SERVER_NAME |
Server name | (prompted) |
UPCLOUD_ZONE |
Datacenter zone | de-fra1 |
UPCLOUD_PLAN |
Server plan | 1xCPU-2GB |
OPENROUTER_API_KEY |
OpenRouter API key | (OAuth or prompted) |