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.
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.
Let's cut through the noise. Here's the timeline:
Most people reading this aren't affected as badly as the headlines suggest. Quick matrix:
| Your setup | Impact | Action |
|---|---|---|
| Claude Code on Max, no OpenClaw | Zero | Nothing. Max still covers you. |
| OpenClaw on GPT-4.1, Gemma 4, or DeepSeek | Zero | Nothing. Anthropic has no role in your setup. |
| Claude Code (Max) + OpenClaw on a different model | Zero | This is the smart stack. Two lanes, no conflict. |
| OpenClaw using Claude via subscription OAuth | Affected | Switch to API key or another model. |
| Claude Pro ($20/mo) + OpenClaw on Claude | Significant | Costs could jump 50x on pay-as-you-go. |
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.
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.
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.
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.
Download v18 or higher from nodejs.org. Takes 5 minutes. No account, no credit card.
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.
mkdir my-agent && cd my-agent openclaw init # follow the setup wizard
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
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" }
}
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.
OpenClaw runs anywhere Node.js runs. Pick the option that fits your situation:
| Platform | Best for | Cost | Difficulty |
|---|---|---|---|
| Your laptop | Testing, personal use | $0 | Easiest |
| Mac Mini (always on) | 24/7 personal agent | $0 after HW | Easy |
| DigitalOcean VPS | Business automation, 24/7 | $6–12/mo | Medium |
| AWS / GCP | Enterprise, scaling | $10–50+/mo | Harder |
| Railway / Render | One-click deploy from GitHub | $5–15/mo | Easy |
digitalocean.com → Create Droplet → Ubuntu 24.04 → $6/mo → Create. You'll get an IP and root password.
ssh root@YOUR_IP_ADDRESS apt update && apt install -y nodejs npm npm install -g openclaw mkdir my-agent && cd my-agent openclaw init
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
Your AI agent has access to API keys, messaging accounts, and potentially sensitive data. Treat security seriously from day one.
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
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.
Generate new keys quarterly. Delete old keys immediately. If you suspect a key was exposed, revoke it and create a new one right away.
# 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
Check your API dashboard weekly. Unusual spikes could indicate a leaked key or runaway agent. Set billing alerts in both OpenAI and Anthropic consoles.
Two-lane setup means two separate bills. Full picture:
| What | Model / Plan | Est. monthly |
|---|---|---|
| Claude Code + AI work | Claude 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 automation | GPT-4.1 | $100–300 |
| Budget alternative | GPT-4.1 Mini / DeepSeek | $5–40 |
| Free local option | Gemma 4 26B (Ollama) | $0 |
| Free cloud option | Gemini Flash | $0 |
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 InstagramDisclaimer: 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.