OpenClaw API Budget Drain: Settings to Change Immediately

OpenClaw's default settings may be causing unexpected API budget drain through the Heartbeat feature. This feature checks tasks every 30 minutes by default, and each check loads the full context files, memory, and chat history, sending tens of thousands of tokens to the API for basic status checks.
Settings to Change Immediately
- Set Active Hours: Restrict Heartbeat to your actual working hours in settings to stop overnight token drain.
- Change Your Default Base Model: Use cheaper models like Gemini Flash or DeepSeek for basic agent tasks instead of premium models like Claude 3.5 Sonnet or Opus.
- Only Call Big Models When Needed: Manually switch to premium models only when you need heavy reasoning or complex coding.
- Use the /new Command: Type
/newto hard-reset sessions after big tasks to avoid dragging dead context into your next prompt.
The source notes that using premium models for everything can cause costs to add up quickly, and context builds up rapidly as OpenClaw drags your entire chat history forward by default.
📖 Read the full source: r/openclaw
👀 See Also

How Claude Project Instructions Are Injected — And Why Changing Them Mid-Conversation Breaks History
Project Instructions and User Preferences are loaded into the system prompt at conversation start, not re-injected every turn. Changing them mid-conversation causes Claude to overwrite its memory of past instructions, leading to false recollections.

Why Most Claude Pipeline Failures Trace Back to Prompts, Not Models — and How to Fix with Skills
A Reddit post argues that the root cause of pipeline failures in Claude workflows is treating prompts like skills. The fix: define input contracts, output schemas, and a learnings file — making a skill what you promote to v1.

Save on Claude Code Bills by Routing Planning Tokens to Cheaper Models
A user cut $40 in overage fees by splitting Claude Code workflows: planning steps go to Haiku 3.5, actual edits and decisions stay on Opus/Sonnet. A 30-line wrapper handles routing; setup took ~2 hours.

CLAUDE.md Entries That Disable Opus 4.7’s Human-Pacing Behavior
Three CLAUDE.md directives that suppress Claude 4.7 Opus's break suggestions, time overestimates, and phase-splitting during long coding sessions.