Running OpenClaw on a Raspberry Pi Model B with Free APIs

A Reddit user reports running OpenClaw on a Raspberry Pi Model B for 15 days continuously using free API tiers. The setup handles ~20 requests per minute and over 1000 requests per day. The primary model is Google Gemma 4 31B IT (free tier), which offers supposedly unlimited context. For heavier tasks, the agent falls back to Gemini Flash via OpenRouter free tier, which also provides access to coding and reasoning models.
The agent has tool access to manage Gmail, upload files to Google Drive, and push to GitHub. For tasks requiring more context, it can invoke Gemini CLI directly.
Browser automation specifics
Initial attempts with Chromium failed due to memory constraints — the browser was too slow and kept crashing. Switching to Firefox headless resolved stability issues. The user confirms Firefox headless is the recommended browser for OpenClaw on low-memory hardware.
The user invites suggestions for further stress tests. The original source is on r/openclaw.
📖 Read the full source: r/openclaw
👀 See Also

Cost-Effective OpenClaw Automation: Using LLMs Only When Needed
A developer shares a practical approach to using OpenClaw for deterministic tasks without constant LLM calls, creating Python scripts for cron jobs and only invoking the LLM when errors require analysis and fixes.

High CPU/RAM and Gateway Restarts in OpenClaw? Disable IPv6 for Telegram
Setting autoSelectFamily: false and dnsResultOrder: 'ipv4first' in Telegram bot config stops ENETUNREACH errors, fixing high CPU, event loop freezes, and gateway restarts.

Claude Code Self-Audit Finds 3GB of Cruft in ~/.claude — Here's How to Clean It
A user prompted Claude Code to audit its own ~/.claude directory and found 2.6GB of stale session transcripts, 170MB of failed telemetry retry logs, and 153MB of undo buffers — dropping from 3GB to under 200MB after cleanup.

Short system prompts improve Claude's adherence and reduce token waste
A developer discovered that replacing a 3,847-word system prompt with several tiny focused prompts (total ~200 words) eliminated Claude's drift and forgotten instructions.