Negation Prompting Is Weak: Instead, Explicitly Describe the Desired Behavior

Prompting with negation — "don't be verbose," "don't add caveats," "don't moralize" — is surprisingly ineffective. A detailed Reddit post breaks down why and offers concrete replacements that actually steer model behavior.
Negation Doesn't Cancel Topics
When you say "don't be wordy", the model still activates the concept of wordiness and writes around it, but doesn't truncate responses. Same for "don't add caveats" — the model generates caveats, then tries to negate them, resulting in verbose, hedged answers.
Positive Instructions Work
- Instead of "don't be wordy":
"Respond in 1–2 sentences unless I ask for more." - Instead of "don't moralize":
"Give me a direct answer, treat caveats as optional." - Instead of "don't use bullets":
"Use plain prose, no lists."
Tone Leak from Closing Politeness
Ending a prompt with "thanks!" or "please." shifts the model's tone toward warmer and wordier responses. Neutral endings (just the instruction) yield neutral tones. The effect appears consistent across Opus 4.7 and Sonnet 4.6, and presumably in Haiku too.
Practical Takeaway
These aren't hacks — they're how instruction following actually works. Tell the model what you want, not what you don't want. Explicitly describe the desired output format and style, and keep the prompt tone-neutral if you want a neutral response.
📖 Read the full source: r/ClaudeAI
👀 See Also

Running OpenClaw Inside Ollama's Docker Container for Simpler Networking
A Reddit user shows how to install OpenClaw inside the official ollama/ollama Docker container so OpenClaw talks to Ollama via localhost, avoiding host.docker.internal and extra networking setup. Trade-off is higher RAM usage.

TLS Interception by Antivirus Breaks Claude Desktop’s Connection; Workaround with AV Exclusions
Antivirus TLS inspection on bridge.claudeusercontent.com causes Cowork (Claude desktop companion) to fail with 'Claude in Chrome is not connected'. Fix: add *.claudeusercontent.com and *.anthropic.com to AV HTTPS exclusions. Node.js --use-system-ca would prevent this.

Model Routing Cut API Costs by 85% vs Claude Max Subscription – A Developer's Analysis
A Claude Max subscriber tracked token usage and found only 15% of tasks needed Opus. Switching to API routing (Sonnet for routine tasks, Opus for hard reasoning) dropped monthly cost from $200 to ~$30 with identical output quality.

Run Claude Code in VSCode/Cursor Integrated Terminal for Better Workflow
Running Claude Code in the VSCode or Cursor integrated terminal instead of an external terminal provides immediate access to git diff panels and debuggers without switching windows, with no configuration required.