10 Practical Tips for Using Claude Code from Reddit User

Specific Commands and Techniques
A Reddit user posted a cheat sheet with 10 specific tips for working with Claude Code. These are practical commands and settings that users have found effective.
- Use
/effort highthen include "ultrathink" in your prompt. This forces full extended thinking with a 31,999-token budget. - End every important session with a clear "Summary of learnings" paragraph. The background Dream system (Auto-Memory) will automatically extract it and inject it into future sessions.
/fork <name>creates a fully isolated conversation branch with its own plan files and transcripts./rewindundoes the last turn — including any code changes.- Tell Claude to "start an Explore agent" or "enter Plan mode." The state manager instantly injects the correct role instructions and tool restrictions.
- Always use absolute paths. Sub-agents and worktrees enforce this strictly — relative paths cause friction and errors.
- Set up custom hooks in
.claude/settings.json. Use exit code 2 in a PostToolUse or PreToolUse hook to silently block actions and force a rewind. /fastdoes not change the model — it runs the same Opus with faster output. Pair it with/effort mediumfor the best speed/quality balance.- Keep
~/.claude/debug/latestopen withtail -f. It shows every trigger, whisper injection, and state-manager decision in real time. - Run your own local MCP servers. They let you expose custom tools and use elicitation to pause the agent mid-task for structured user input.
- Prefix important instructions with
<system-reminder>tags. Because of the prompt assembly order, the model treats them with the same priority as internal whispers.
These tips come from user experience rather than official documentation.
📖 Read the full source: r/ClaudeAI
👀 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.

Workaround for Claude Mobile App Microphone Feedback Loop Error
A Reddit user shares a working workaround for the microphone feedback loop error in the Claude mobile app: installing the web version as a standalone Progressive Web App via Google Chrome, which bypasses the issue and provides access to different Claude models.

How splitting context into separate files made Claude more consistent
A Reddit user shares a practical setup for Claude: split context into about-me.md, my-voice.md, and my-rules.md files; use a plan-before-execute flow; switch models per task; and give feedback instead of perfect prompts.

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.