Deploy OpenClaw in 5 Minutes
OpenClaw is the most popular AI agent framework — 215K+ GitHub stars. Curate-Me adds governance, security, and cost control with one environment variable change.
Step 1: Sign Up & Get Your API Key
- Go to dashboard.curate-me.ai/signup
- Create your account (no credit card needed for the free tier)
- Copy your API key from the welcome page:
cm_sk_xxx
Step 2: Point OpenClaw at the Gateway
Change one environment variable. That’s it.
# Before (direct to provider — no governance):
OPENAI_BASE_URL=https://api.openai.com/v1
# After (through Curate-Me — full governance):
OPENAI_BASE_URL=https://api.curate-me.ai/v1/openaiAdd your Curate-Me API key as a header:
X-CM-API-Key=cm_sk_xxxYour existing OpenClaw configuration, prompts, skills, and workflows stay exactly the same. Your agents don’t even know they’re being governed.
Step 3: Verify It Works
Python
from curate_me import CurateMe
client = CurateMe(api_key="cm_sk_xxx")
health = client.gateway.health()
print(health) # {"status": "ok", "gateway": "active"}TypeScript
import { CurateMe } from '@curate-me/sdk'
const client = new CurateMe({ apiKey: 'cm_sk_xxx' })
const health = await client.gateway.health()
console.log(health) // { status: "ok", gateway: "active" }curl
curl https://api.curate-me.ai/v1/health \
-H "X-CM-API-Key: cm_sk_xxx"Step 4: Configure Governance (Optional)
From the dashboard, configure your governance policies:
Cost Controls
daily_budget: 50.00 # USD — auto-deny when exceeded
max_cost_per_request: 2.50 # USD — block expensive single requests
monthly_budget: 500.00 # USD — hard stopModel Allowlists
allowed_models:
- gpt-4o-mini
- claude-haiku
- deepseek-chatPII Scanning
pii_action: block # block | allow | needs_approvalRate Limiting
rpm_limit: 300 # requests per minute per orgAll configurable from dashboard.curate-me.ai → Gateway → Policies.
Step 5: Deploy a Managed Runner (Optional)
For teams who want managed hosting (not just governance), use the Setup Wizard:
- Go to
dashboard.curate-me.ai→ Gateway → OpenClaw - Follow the 5-step wizard: Prerequisites → Policy → Runner → Canary → Integration
- Your OpenClaw instance is deployed on dedicated Hetzner VPS with full governance
What You Get
| Feature | Self-Hosted | With Curate-Me |
|---|---|---|
| Cost tracking | None | Real-time per-model, per-runner |
| Budget caps | None | Per-org daily/monthly limits |
| PII scanning | None | Automatic, blocks before provider |
| Security audit | None | Compliance scoring + auto-patching |
| Skill scanning | None | ClawHavoc-hardened scanner |
| HITL approvals | None | Approval queues in dashboard |
| Kill switch | None | Emergency stop across all runners |
| Dashboard | None | 41-page ops console |
Supported Providers
| Provider | Models | Status |
|---|---|---|
| OpenAI | GPT-4o, GPT-4o-mini, GPT-5.1, o1, o3 | Supported |
| Anthropic | Claude Opus, Sonnet, Haiku | Supported |
| Gemini 2.5 Pro, Flash | Supported | |
| DeepSeek | V3, R1 | Supported |