5 New Claude Code Tips
A while ago, I posted 32 Claude Code Tips: From Basics to Advanced. Here’s a quick update with 5 more tips.
1. /copy command
The simplest way to get Claude’s output out of the terminal. Just type /copy and it copies Claude’s last response to your clipboard as markdown.
2. /fork and --fork-session
Claude Code now has built-in conversation forking:
/fork- fork from within a conversation--fork-session- use with--resumeor--continue(e.g.,claude -c --fork-session)
Since --fork-session has no short form, I created a shell function to use --fs as a shortcut. You can see it here.
3. Plan mode for context handoff
Enter plan mode with /plan or Shift+Tab. Ask Claude to gather all the context the next agent needs:
I just enabled plan mode. Bring over all of the context that you need for the next agent. The next agent will not have any other context, so you’ll need to be pretty comprehensive.
When it’s done, select Option 1 (”Yes, clear context and auto-accept edits”) to start fresh with only the plan. The new Claude instance sees just the plan, no baggage from the old conversation.
4. Periodic CLAUDE.md review
Your CLAUDE.md files get outdated over time. Instructions that made sense a few weeks ago might no longer be relevant. I created a review-claudemd skill that analyzes your recent conversations and suggests improvements. You can check it here.
5. Parakeet for voice transcription
I’ve been using voice transcription to talk to Claude Code instead of typing. I just added Parakeet support to Super Voice Assistant (open source) and it’s really fast - Parakeet v2 runs at ~110x realtime with 1.69% word error rate. Accurate enough for Claude Code.


Love the Parakeet tip — I've been exploring non-keyboard input for Claude Code too, but from the hardware side. I built a small macOS menu bar app (VibePad) that maps gamepad buttons to Claude Code shortcuts — accept, reject, plan mode, scroll, etc. Between voice input and a controller you can basically vibe code from your couch. Feels like this "beyond the keyboard" category of tips deserves more attention.