Slash Agent Start-Up Tokens by 60%: Clean Up Your Bot's Workspace
A developer on r/openclaw shared a practical method to drastically reduce start-up token consumption for LLM-based coding agents. The approach: run an LLM over all markdown files in the workspace root to identify and eliminate bloat and duplication.
Key Actions
- Reviewed every markdown file at the workspace root for redundant or overly verbose content (e.g., change logs, duplicated memories, user info).
- Structured the remaining files similarly to a memory system for consistency.
- Used a CLI tool (
codex) instead of going through the agent to keep the process objective. - Created a
TOOLSfile with quick notes and a separatetools/folder with per-tool details that the agent can pull on demand. - Added new files like
voiceto maintain a consistent tone across different models.
Results
Start-up tokens dropped from 80k to 31k—a 61% reduction. The workspace became leaner and the agent more responsive without losing essential context.
Why This Matters
High start-up tokens translate to slower response times and higher costs. Regularly auditing workspace files with an LLM—outside the agent loop—prevents bloat accumulation and keeps token budgets under control.
Who This Is For
Developers running long-lived AI coding agents who want to cut token waste and improve agent performance without sacrificing context quality.
📖 Read the full source: r/openclaw
👀 See Also

Claude Code Plugin Bug Causes Skills to Load Twice, Increasing Context Compaction
A bug in Claude Code causes plugins to load every skill twice due to stale cache directories and symlink duplication, significantly increasing system prompt size and triggering frequent context compaction. The source provides check scripts to identify the issue and fix scripts to remove stale plugin versions and duplicate symlinks.

Claude Stealth Mode Directive for Autonomous AI Execution
A Reddit user shares a 'stealth mode' directive that forces Claude to operate silently and autonomously, delivering complete one-shot results without conversation output until work is complete.

AI Agents Exposed My Sloppy Prompts: Clarity Beats Smarter Models
A Reddit post reveals that AI agents don't magically fix unclear tasks — they just make the feedback immediate. The real problem was the user's own lack of clarity.

How to disable Claude Code's verb spinner feature
Claude Code includes a default verb spinner that displays whimsical gerunds like 'Seasoning' and 'Crafting' during processing. You can disable it by editing the settings.json file with a blank space in the spinnerVerbs array.