TIPS

Claude Code Tips & Tricks: 10 Habits That Save Real Time

A practical, no-fluff list of Claude Code tips — from plan mode and custom slash commands to CLAUDE.md, subagents, hooks, and keeping your context lean.

By Ian MacCallum··7 min read

Most people use Claude Code the way they used their first text editor — they type, they wait, they accept whatever comes back. But a handful of habits separate a frustrating session from a genuinely fast one. These claude code tips are the ones that actually move the needle: planning before big edits, scripting your repeated workflows, giving Claude standing instructions, and keeping your context clean so the model stays sharp. None of them require exotic configuration. If you are new to the tool, start with what Claude Code is, then come back here to level up your day-to-day flow.

Use plan mode before any big edit

The single highest-leverage habit is asking Claude to plan before it touches code. Plan mode lets the model read your codebase, think through the approach, and present a proposed change set — without writing anything until you approve. This catches the wrong-file, wrong-assumption mistakes that are expensive to unwind after the fact. For a feature that spans several files, a thirty-second plan review saves you ten minutes of reverting half-applied edits. You can cycle into plan mode from the prompt; check the official docs for the current key binding, since the interface evolves.

Treat the plan as a contract. Read it, push back on anything that looks off, and only then let Claude execute. The bigger the change, the more this matters — and it pairs well with small, reviewable commits so you can always roll back to a known-good state if something drifts.

For exploratory or risky work, plan first and execute in small batches. For a one-line fix, skip the ceremony — plan mode is a tool, not a tax.

Turn repeated workflows into custom slash commands

If you find yourself typing the same multi-step prompt twice, make it a command. Custom slash commands are reusable prompt templates you store in your project (or globally) and trigger by name — think /review, /test, or /release-notes. They encode the steps, the standards, and the output format you want every time, so you stop re-explaining yourself.

Good candidates are anything repetitive and opinionated: drafting a PR description, writing a conventional commit, auditing a diff for security issues, or generating release notes from your changelog. The full setup is covered in our guide to custom slash commands — check the official docs for the exact file locations and frontmatter syntax, since those evolve.

Put standing instructions in CLAUDE.md

CLAUDE.md is a file Claude reads automatically at the start of a session. It is where your project's standing rules live: the package manager you use, your test command, your code style, directories to avoid, and any "always do X, never do Y" conventions. Instead of repeating these every session, you write them once and Claude carries them as context.

Keep it tight and specific. A bloated CLAUDE.md burns context budget and gets ignored; a focused one is followed. Useful entries include build and lint commands, naming conventions, and gotchas a new teammate would trip over. You can also keep a personal global file for preferences that apply across every project, separate from the project-level one.

  • Commands: how to install, run, test, and lint
  • Conventions: code style, naming, file structure
  • Boundaries: generated files or directories not to edit
  • Gotchas: non-obvious quirks of your stack

Delegate search to subagents

When you ask Claude to "find everywhere we handle auth," the search results — file after file of matches — can flood your main conversation and crowd out the context that matters. Subagents solve this. A subagent runs a task in its own separate context window and reports back a concise summary, so the noisy intermediate work never pollutes your main thread.

Search, codebase exploration, and large refactors are ideal jobs to delegate. The parent conversation stays clean and on-task while the subagent does the grunt work. See how subagents work for when to reach for them and how to define your own.

Automate formatting and checks with hooks

Hooks let you run your own shell commands automatically in response to events — for example, formatting a file the moment Claude finishes editing it, or running a linter after a change. Instead of reminding Claude to "run prettier" every time, the hook fires deterministically and the model never has to think about it.

Auto-format on save is the classic starter hook, but you can also block edits to protected paths, run type checks, or log activity. Because hooks are deterministic, they are more reliable than asking the model nicely. Our hooks explainer walks through the event types and config format.

Hooks execute real shell commands on your machine. Review any hook config before enabling it, and be cautious copying hook snippets from untrusted sources.

Keep your context lean

Context is a budget, not an infinite scroll. The longer a conversation runs, the more old, irrelevant material competes with what you actually care about — and quality quietly degrades. The fix is housekeeping: clear the conversation when you switch tasks, and start fresh threads for unrelated work rather than piling everything into one mega-session. Most setups expose a command to reset or compact the conversation when it gets long.

  • Clear or reset context when you move to a new task
  • Use subagents so bulky search output stays out of the main thread
  • Reference files by path instead of pasting huge blobs
  • Lean on CLAUDE.md for standing rules instead of repeating them

A focused, well-pruned context produces sharper, faster answers. When a session feels like it is wandering, that is usually the signal to wipe the slate and restate the goal.

More claude code tips: mine the changelog

Claude Code ships fast, and the features that would save you the most time are often the ones you do not know exist yet. New flags, settings, slash command capabilities, and workflow improvements land regularly — and they only help if you notice them. Skimming the release notes is one of the most underrated claude code tips there is.

Build a habit of glancing at the Claude Code changelog after each update, or check the latest release when something feels different. If a term in the notes is unfamiliar, the glossary can fill the gap. Staying current is itself a productivity feature — and it is why we built a notifier for it.

A few smaller habits that compound

Beyond the big ones, several small moves add up over a week of work. Be specific in your prompts — name the file, the function, and the desired behavior rather than describing it vaguely. Ask Claude to explain its plan when you are unsure, and ask it to verify its own work (run the tests, re-read the diff) before you accept. And review diffs the way you would review a teammate's PR: trust, but verify.

HabitWhy it helps
Be specific (file, function, behavior)Fewer wrong guesses, less back-and-forth
Ask for a plan on big changesCatches mistakes before they hit disk
Have Claude verify its own workSurfaces failures before you do
Commit in small chunksEasy to revert and review
Skim the changelog after updatesDiscover time-saving features early

Putting it together

None of these tips are complicated, and you do not need to adopt them all at once. Start with plan mode and a tight CLAUDE.md this week; add a custom slash command or a format-on-save hook when you feel the friction. Over time these habits stack into a workflow that feels less like wrestling a tool and more like pairing with a fast, well-briefed teammate.

The one habit that keeps all the others fresh is staying current. New capabilities arrive constantly, so make it a ritual to read the Claude Code changelog after every update — or let Claude Drops ping you the moment a new release lands, so you never miss the trick that saves you an afternoon.

IM

Ian MacCallum

Maintainer, Claude Drops

Ian builds Claude Drops and reads every Claude Code release so you don't have to. He writes plain-English guides to Claude Code's features, drawing directly from the official changelog and documentation.

Stay on top of Claude Code

Get notified the moment a new version ships, and browse the full Claude Code changelog.

Get Claude Drops

FAQ

Frequently asked questions

What is the most useful Claude Code tip for beginners?+
Use plan mode before any change that touches more than one file. Letting Claude propose its approach before writing code catches wrong assumptions early and saves you from reverting half-applied edits. Pair it with a clear, specific prompt and you will avoid most of the common frustrations.
What should I put in CLAUDE.md?+
Standing instructions Claude should follow every session: your install/run/test/lint commands, code style and naming conventions, directories not to edit, and any non-obvious gotchas in your stack. Keep it tight — a focused file gets followed, while a bloated one wastes context and gets ignored.
How do I keep Claude Code fast over a long session?+
Keep your context lean. Clear or reset the conversation when you switch tasks, start fresh threads for unrelated work, delegate noisy search to subagents, and reference files by path instead of pasting large blobs. A pruned context produces sharper, faster answers.
When should I use a subagent versus the main conversation?+
Use a subagent for noisy, bulky jobs like searching the codebase, broad exploration, or large refactors. The subagent runs in its own context and reports back a concise summary, so the intermediate output never clutters your main thread. Keep interactive, decision-heavy work in the main conversation.
How do I find out about new Claude Code features?+
Read the release notes. Claude Code updates frequently, and many time-saving features go unnoticed simply because users do not know they shipped. Skim the Claude Code changelog after each update, or use a notifier like Claude Drops to get alerted when a new release lands.