Free Playbook · April 2026 · No Opt-In

The OpenClaw Zero-Impact Playbook

What Anthropic's April 4 billing change actually means, why most people are panicking for no reason, and the exact stack to run a fully autonomous AI agent — free with Gemma 4 or pennies with GPT-4.1 — without any vendor lock-in.

Kelvin Craver · Founder, Crave Digital · Los Angeles

From the founder

If you've been following the OpenClaw and Anthropic story — or someone sent you this because you were freaking out in the comments — I put this together for you.

I'm Kelvin Craver. I run Crave Digital, an AI automation agency in Los Angeles. I've been deep in Claude Code infrastructure, building autonomous agent pipelines, and running AI-powered systems across multiple businesses. When the April 4 announcement dropped, my inbox started moving.

Honest truth: most people impacted by this change set it up wrong to begin with. They were using a flat $20 or $200 subscription to power unlimited agentic workflows — workflows that consume 15–20x the compute of normal use. Anthropic was quietly subsidizing that gap. Now they're not.

But if you're already running OpenClaw on GPT-4.1 — or running it completely free on Gemma 4 locally? Nothing changed for you. Not one dollar. Not one workflow.

This playbook walks you through exactly what happened, who's actually affected, and the smartest architecture to run OpenClaw on any model you want — including completely free options — without putting yourself at one provider's mercy again.

Use it. Share it. And if you want help setting this up for your business, you know where to find me.

Section 01 — The Situation

What actually happened

Let's cut through the noise. Here's the timeline:

Nov 2025
OpenClaw launches as "Clawdbot" Austrian developer Peter Steinberger releases an open-source autonomous AI agent that runs on your device and connects to LLMs like Claude, GPT-4, and DeepSeek through messaging apps.
Jan 2026
Viral — 250,000+ GitHub stars Renamed to OpenClaw after a trademark dispute with Anthropic. Hits 100,000 stars in under 48 hours — one of the fastest-growing open-source projects in history.
Feb 2026
Creator joins OpenAI Steinberger announces he's joining OpenAI and that an open-source foundation will take stewardship. OpenAI publicly backs the transition.
Apr 4, 2026
Anthropic ends the free ride Effective immediately, Claude Pro and Max subscribers can no longer use their flat-rate subscription limits to power third-party AI agent frameworks including OpenClaw. All third-party harnesses now require separate "Extra Usage" pay-as-you-go billing.
Apr 17, 2026
Transition credit deadline Anthropic offers each affected subscriber a one-time credit equal to their monthly plan. Must be claimed by April 17 — valid 90 days.
The core issue: One day of OpenClaw running on Claude Opus costs ~$109 in tokens. Anthropic's own Claude Code costs ~$6/day for the average developer. The math never worked at flat subscription pricing. Anthropic was eating the difference. Now they're done.
Section 02 — Who's Actually Affected

Are you impacted?

Most people reading this aren't affected as badly as the headlines suggest. Quick matrix:

Your setupImpactAction
Claude Code on Max, no OpenClawZeroNothing. Max still covers you.
OpenClaw on GPT-4.1, Gemma 4, or DeepSeekZeroNothing. Anthropic has no role in your setup.
Claude Code (Max) + OpenClaw on a different modelZeroThis is the smart stack. Two lanes, no conflict.
OpenClaw using Claude via subscription OAuthAffectedSwitch to API key or another model.
Claude Pro ($20/mo) + OpenClaw on ClaudeSignificantCosts could jump 50x on pay-as-you-go.
Section 03 — The Zero-Impact Strategy

The smart multi-lane stack

Here's what I recommend — and what I personally run. The key idea: don't depend on one company. Use the right tool for each job. Keep the billing completely separate. You don't need to be technical to do this.

★ Lane 1 — Recommended

Claude Code + Max Plan

Use Claude for the heavy thinking — coding, writing, analysis, strategy, research. Your Max subscription ($100–$200/mo) covers this completely. Nothing changed here. This is what I use to build everything.

Lane 2 — Paid

OpenClaw + GPT-4.1

Run your AI agent workflows — auto-responding to leads, scheduling, sending messages, web lookups — on OpenAI's GPT-4.1. Pay per use (usually $10–30/mo for normal usage). Completely separate account from Claude. No conflict.

🆓 Lane 2 — Free Alternative

OpenClaw + Gemma 4 (completely free)

Google released Gemma 4 on April 2, 2026 — a powerful AI model you can run on your own computer for free. No API key. No monthly bill. No company can change the price because it runs on your machine. Install Ollama, download the model, point OpenClaw at it. Done.

What you need: A computer with at least 16GB of RAM (most Macs and PCs made after 2022 qualify). The 26B version is recommended.

Tradeoff: A bit slower than cloud (3–5s per response instead of 1–2s), and not quite as smart on complex tasks. For everyday agent work — responding, looking things up, running automations — it gets the job done at $0/month.

Why this works: Anthropic's policy only restricts using your Claude subscription to power third-party tools. If OpenClaw is running on GPT-4.1 or Gemma 4, Anthropic isn't involved at all. You get the best of everything — and no single company can pull the rug.

Other free and low-cost options

Section 04 — Step-by-Step Setup

Get OpenClaw running

1

Install Node.js

Download v18 or higher from nodejs.org. Takes 5 minutes. No account, no credit card.

2

Pick your model path

Paid path (GPT-4.1): Create an account at platform.openai.com, generate an API key, set a spending limit.

Free path (Gemma 4): Install Ollama from ollama.com, run ollama pull gemma4:26b to download the model, then ollama serve to run it.

⚠️ Copy your OpenAI key immediately — OpenAI only shows it once. Store it in a password manager. Never paste it in a public GitHub repo.
3

Initialize your agent

mkdir my-agent && cd my-agent
openclaw init    # follow the setup wizard
4

Configure config.json — pick your model

If using GPT-4.1 (paid):

{
  "env": {
    "OPENAI_API_KEY": "sk-YOUR_KEY_HERE"
  },
  "agents": {
    "defaults": {
      "model": { "primary": "openai/gpt-4.1" }
    }
  }
}

If using Gemma 4 (free):

{
  "agents": {
    "defaults": {
      "model": { "primary": "ollama/gemma4:26b" }
    }
  },
  "api": "ollama"
}

Make sure Ollama is running first: ollama serve

5

Connect a messaging platform

Telegram is easiest to test. Open Telegram → search @BotFather → type /newbot → copy the token it gives you. Add to config:

"messaging": {
  "telegram": { "token": "YOUR_BOT_TOKEN" }
}
6

Launch and test

openclaw start            # foreground
openclaw start --daemon   # background
openclaw logs             # view logs

Send your agent a test: "What's today's date?" — if it responds, you're live.

Section 05 — Where to Run It

Choose your deployment

OpenClaw runs anywhere Node.js runs. Pick the option that fits your situation:

PlatformBest forCostDifficulty
Your laptopTesting, personal use$0Easiest
Mac Mini (always on)24/7 personal agent$0 after HWEasy
DigitalOcean VPSBusiness automation, 24/7$6–12/moMedium
AWS / GCPEnterprise, scaling$10–50+/moHarder
Railway / RenderOne-click deploy from GitHub$5–15/moEasy
My recommendation: For personal use — run it on your laptop or a Mac Mini. Free, up in 30 minutes. For business — get a $6/mo DigitalOcean droplet. Runs 24/7, survives reboots, SSH in from anywhere. That's what I use for my own businesses.

VPS quick setup (DigitalOcean)

1

Create a droplet

digitalocean.com → Create Droplet → Ubuntu 24.04 → $6/mo → Create. You'll get an IP and root password.

2

SSH in and install

ssh root@YOUR_IP_ADDRESS
apt update && apt install -y nodejs npm
npm install -g openclaw
mkdir my-agent && cd my-agent
openclaw init
3

Run as a background service

So it survives disconnects and reboots:

cat > /etc/systemd/system/openclaw.service << 'EOF'
[Unit]
Description=OpenClaw Agent
After=network.target
[Service]
Type=simple
WorkingDirectory=/root/my-agent
ExecStart=/usr/bin/openclaw start
Restart=always
[Install]
WantedBy=multi-user.target
EOF
systemctl enable openclaw
systemctl start openclaw
systemctl status openclaw
Section 06 — Security

Lock down your setup

Your AI agent has access to API keys, messaging accounts, and potentially sensitive data. Treat security seriously from day one.

1. Never expose API keys

Store keys in environment variables or a .env file. Never hardcode. Never commit to GitHub. Add .env to .gitignore immediately.

# Create .env (never commit)
OPENAI_API_KEY=sk-your-key-here
TELEGRAM_TOKEN=your-bot-token

echo ".env" >> .gitignore

2. Set spending limits

Both OpenAI and Anthropic let you cap monthly spending. Do this before running your agent. Start at $20–50/mo and increase as you learn your usage.

3. Rotate keys every 90 days

Generate new keys quarterly. Delete old keys immediately. If you suspect a key was exposed, revoke it and create a new one right away.

4. Secure your VPS

# SSH keys instead of passwords
ssh-keygen -t ed25519
ssh-copy-id root@YOUR_IP

# Disable password login
sudo sed -i 's/PasswordAuthentication yes/PasswordAuthentication no/' /etc/ssh/sshd_config
sudo systemctl restart sshd

# Enable firewall
sudo ufw allow OpenSSH
sudo ufw enable

5. Monitor usage

Check your API dashboard weekly. Unusual spikes could indicate a leaked key or runaway agent. Set billing alerts in both OpenAI and Anthropic consoles.

⚠️ If your key is ever exposed publicly — accidentally pushed to GitHub, shared in a screenshot, anything — revoke it immediately. Don't wait. Generate a new key and update your config. Exposed keys can be found by bots within minutes.
Section 07 — Cost Reality Check

What this actually costs

Two-lane setup means two separate bills. Full picture:

WhatModel / PlanEst. monthly
Claude Code + AI workClaude Max$100–200 flat
Light agent use (10–30 tasks/day)GPT-4.1$3–12
Active automation (50–100 actions/day)GPT-4.1$25–80
Heavy business automationGPT-4.1$100–300
Budget alternativeGPT-4.1 Mini / DeepSeek$5–40
Free local optionGemma 4 26B (Ollama)$0
Free cloud optionGemini Flash$0
⏰ Claim your transition credit by April 17. If you were running OpenClaw on Claude via your subscription, Anthropic is giving you a one-time credit equal to your monthly plan fee. Log into claude.ai → Billing to redeem. Valid 90 days across Claude Code, chat, and connected third-party tools. Don't leave it on the table.
Section 08 — Action Checklist

Everything you need to do

Want me to set this up for your business?

I help founders and business owners build AI agent systems that run 24/7. If you want a custom setup — not just OpenClaw, but a full automation stack — book a free 30-minute audit.

Book a Free Audit Or DM me on Instagram

Disclaimer: This playbook is for educational and informational purposes only. The information reflects conditions as of April 2026. AI platform pricing, terms of service, and API policies — including those from Anthropic, OpenAI, and others — are subject to change at any time without notice.

No guarantee of pricing or availability. Cost estimates and model recommendations are based on current pricing as of the publication date. Always verify current pricing and terms directly with the provider before making purchasing decisions.

Not legal, financial, or professional advice. Consult with appropriate professionals before making business decisions based on this information. Kelvin Craver and Crave Digital are not liable for losses arising from use of this information.

Third-party trademarks. OpenClaw, Claude, Anthropic, OpenAI, GPT-4.1, DeepSeek, Telegram, and other product names are trademarks of their respective owners. This playbook is not affiliated with, endorsed by, or sponsored by any of these companies.