OpenClaw Client Adds Live API Cost Tracking, Spending Caps, and Granular Agent Controls

The OpenClaw Client has received a major update focused on cost control and agent customization. Key additions include live API cost tracking with a circular progress bar displayed next to each agent's name, and strict per-agent spending caps to prevent runaway costs.
Cost Controls & Usage Tracking
- Spending Caps: Define strict budget limits for each agent directly in the UI.
- Live Usage UI: An unobtrusive circular progress bar shows current API usage at a glance, placed right next to the agent's name.
Agent Customization
- Sub-agent Management: Orchestrate, view, and manage child agents from the parent agent's interface.
- Skill Management: Toggle and configure specific skills (tools) per agent on the fly.
- Granular Model Selection: Swap between different models from your provider per agent (e.g., use a cheap model for simple tasks and a more capable model for complex coding).
The update is available now on the GitHub repo. The developer built it to provide a cleaner local UI for agent management.
📖 Read the full source: r/clawdbot
👀 See Also

OpenClaw Agent Maintains Memory When Switching from Claude Subscription to API
A developer reports successfully migrating their OpenClaw setup from a Claude subscription to API key without losing agent memory, using the mengram-memory skill that saves to an external layer. The agent retained ~100+ learned facts, evolved procedures, and episodic memories.

Signet: An Open-Source Local-First Memory Substrate for AI Agents
Signet is an open-source memory substrate for AI agents that moves memory handling outside the agent loop. It preserves transcripts, distills sessions into structured memory, links entities into a graph, and injects context before prompts start.

Claude Code Lazy-Loads Tool Schemas via ToolSearch to Save Tokens
Claude Code defers tool schema loading by sending only tool names upfront and requiring a ToolSearch call to fetch schemas before use. This architecture cuts token burn significantly.

Open-Source Benchmark Runner for Testing OpenClaw Agents on Real Workflows
A new open-source project lets you benchmark OpenClaw agents against your own private, real-world tasks defined in YAML, with support for importing actual agent workspaces.