Short system prompts improve Claude's adherence and reduce token waste

A user on r/ClaudeAI shared that after eight months of struggling with a massive 3,847-word system prompt covering requirements, coding standards, project context, personality preferences, and error handling, they discovered the root cause: the prompt was too long.
Claude would start strong but gradually forget half the instructions or ignore parts that didn't fit. The user asked Claude itself why it kept forgetting instructions, and the model indicated the prompts were too long.
The fix was to replace the single giant prompt with multiple tiny focused prompts, totaling about 200 words:
"Write tests first. Use Jest. Cover edge cases.""Explain your code changes in bullet points.""Ask before installing new dependencies."
After three weeks of testing, the user reports that Claude consistently follows these short prompts, conversations no longer drift into random tangents, and token usage dropped because there's less fluff to process. Notably, they haven't had a single conversation where Claude started refactoring the codebase unprompted.
The takeaway: short prompts force specificity about what you actually want rather than trying to anticipate every scenario, and Claude works better when given room to think instead of a novel's worth of constraints.
📖 Read the full source: r/ClaudeAI
👀 See Also

Five Common OpenClaw Setup Mistakes That Waste Money and Create Security Risks
Based on reviewing 50+ OpenClaw setups, the same five issues appear repeatedly: using Opus as the default model instead of Sonnet for most tasks, never starting fresh sessions, installing skills without reading source code, exposing the gateway to the network, and adding a second agent before fixing the first.

How to Prevent CLAUDE.md Rot: Treat Rules Like Code
After 18 months of real-world use, one developer shares four disciplines to keep CLAUDE.md under 100 lines: use it as an index, separate rules from sources, audit on every PR, and delete more than you add.

Claude Code: Context Management Over Prompt Engineering
A developer shares that after a year of using Claude Code, the key skill isn't prompt wording or model selection, but providing comprehensive project context upfront to get better results.

Silent Success: One Dev's Approach to Cron Job Alerting
A developer on r/openclaw stops sending success notifications for healthy cron runs, alerting only on auth failures, state corruption, or repeated failures.