OpenClaw Plugin Minimalism: Core Tools Handle 95% of Tasks

Plugin Overhead and Performance Impact
Based on months of production experience with OpenClaw, a developer reports that plugins add significant system overhead. Each plugin installed contributes to:
- Increased startup time
- Higher memory usage
- Dependency chains that break during updates
- Additional security surface area that often goes unaudited
- Slower agent decision loops
Core Tools Cover Most Use Cases
The source states that OpenClaw's built-in tools handle approximately 95% of real-world tasks. These core tools include:
execreadwriteeditbrowserweb_fetchweb_search- sessions tools
For the remaining 5% of use cases, the developer suggests implementing solutions with simple Python scripts in the workspace rather than installing additional plugins.
Practical Implementation Results
The developer implemented a minimalist approach with these specific actions:
- Disabled every non-essential plugin
- Moved three "critical" plugins to simple shell scripts
This approach yielded measurable performance improvements:
- 40% faster startup
- 60% less memory usage
- Zero breaking updates over four months
The developer emphasizes that this minimalism approach reduces the token overhead spent on loading plugins during startup, allowing agents to focus tokens on actual tasks.
📖 Read the full source: r/openclaw
👀 See Also

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.

Stop using Claude as an expensive autocomplete — build an SDR system with role definitions, memory files, and refinement rituals
A Reddit post argues that most sales teams use Claude as a 'chatbot' rather than a system. The fix: define a role, maintain a memory file with ICP/tone/learnings, and run a weekly refinement ritual to compound output quality.

Stop Claude's Em Dashes with One Line in Preferences or Claude.md
Add a specific sentence to your Claude.ai profile preferences or Claude.md to reduce em dashes by ~98%. This is a practical tweak tested by the community.

Reducing Claude Hallucinations with Pre-Output Prompt Injection
A Reddit post details a method to cut Claude AI hallucinations by half using a pre-output prompt that forces the model to record uncertainties and next steps before responding. The approach involves adding specific markdown instructions to Claude's system prompt and creating a Python script.