mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-30 21:09:29 +00:00
- Add hermes shim scripts for GCP, Hetzner, DigitalOcean, and Daytona - Update manifest.json matrix entries from "missing" to "implemented" - Bump default INSTALL_WAIT from 300s to 600s to fix zeroclaw timeout on small VMs where Rust compilation takes 8-12 minutes - Update cloud READMEs with hermes usage docs - Bump CLI version to 0.11.18 Co-authored-by: Ahmed Abushagur <ahmed@abushagur.com> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
74 lines
1.6 KiB
Markdown
74 lines
1.6 KiB
Markdown
# GCP Compute Engine
|
|
|
|
Google Cloud Compute Engine instances via gcloud CLI. [GCP Compute Engine](https://cloud.google.com/compute)
|
|
|
|
> Uses current username for SSH. Requires gcloud CLI installed and configured.
|
|
|
|
## Agents
|
|
|
|
#### Claude Code
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/claude.sh)
|
|
```
|
|
|
|
#### OpenClaw
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/openclaw.sh)
|
|
```
|
|
|
|
#### ZeroClaw
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/zeroclaw.sh)
|
|
```
|
|
|
|
#### Codex CLI
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/codex.sh)
|
|
```
|
|
|
|
#### OpenCode
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/opencode.sh)
|
|
```
|
|
|
|
#### Kilo Code
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/kilocode.sh)
|
|
```
|
|
|
|
#### Hermes
|
|
|
|
```bash
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/hermes.sh)
|
|
```
|
|
|
|
## Non-Interactive Mode
|
|
|
|
```bash
|
|
GCP_INSTANCE_NAME=dev-mk1 \
|
|
OPENROUTER_API_KEY=sk-or-v1-xxxxx \
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/claude.sh)
|
|
```
|
|
|
|
## Custom VPC / Subnet
|
|
|
|
If your GCP project's default VPC uses **custom subnet mode** (common in enterprise or org-managed projects), set these env vars to override the default network/subnet:
|
|
|
|
| Variable | Default | Description |
|
|
|---|---|---|
|
|
| `GCP_NETWORK` | `default` | VPC network name |
|
|
| `GCP_SUBNET` | `default` | Subnet name |
|
|
|
|
Example:
|
|
```bash
|
|
GCP_NETWORK=my-vpc GCP_SUBNET=my-subnet \
|
|
GCP_INSTANCE_NAME=dev-mk1 \
|
|
OPENROUTER_API_KEY=sk-or-v1-xxxxx \
|
|
bash <(curl -fsSL https://openrouter.ai/labs/spawn/gcp/claude.sh)
|
|
```
|