⏳ This skill is pending AI review.
Scores will appear once the review pipeline completes.
install-openclaw-gcp
Install and deploy an OpenClaw gateway on Google Cloud Platform from scratch. Walks through GCP project setup, VM creation, Docker installation, OpenClaw deployment, SSH tunnel configuration, and verification. Use when setting up OpenClaw on GCP, creating a VM for an OpenClaw gateway, deploying OpenClaw to the cloud, or connecting to a remote OpenClaw instance.
// RATINGS
// README
install-openclaw-gcp
A Claude Code skill that walks you through deploying an OpenClaw gateway on Google Cloud Platform.
You end up with a Debian 12 VM running OpenClaw in Docker, accessible from your local machine through an SSH tunnel. No public internet exposure.
Install
Clone into your Claude Code skills directory:
# Personal (available across all projects)
git clone https://github.com/GKjohns/install-openclaw-gcp.git ~/.claude/skills/install-openclaw-gcp
# Or project-level (shared via version control)
git clone https://github.com/GKjohns/install-openclaw-gcp.git .claude/skills/install-openclaw-gcp
Usage
In Claude Code, invoke with:
/install-openclaw-gcp
Or just ask Claude something like "help me set up OpenClaw on GCP" and it will pick up the skill automatically.
The skill covers the full process:
- Installing and authenticating the
gcloudCLI - Creating a GCP project with Compute Engine enabled
- Provisioning an
e2-mediumVM (Debian 12, 20 GB disk) - Installing Docker
- Running the OpenClaw setup script (image pull, onboarding, container start)
- Verifying the gateway
- Retrieving the gateway token
- Connecting via SSH tunnel
What's included
SKILL.md Core installation procedure
LICENSE.txt MIT license
reference/
troubleshooting.md Common problems and diagnostic commands
optional-config.md API keys, OpenAI-compatible HTTP API
day-to-day.md Health checks, logs, restarts, updates
scripts/
health-check.sh Check gateway health via SSH
tunnel.sh Open SSH tunnel to the gateway
vm-logs.sh View container logs
Prerequisites
- A Google Cloud account with billing enabled
- ~15-30 minutes
Tested
This skill was tested with a full from-scratch deployment on GCP (April 2026). The container naming, port bindings, allowed-origins behavior, and docker compose commands all reflect what the setup script actually produces.
Links
// HOW IT'S BUILT
KEY FILES