Skip to content
English

Workflows & power-user

9 Claude Code workflows that actually save time

Most people use Claude Code like a faster autocomplete. The people who get the most out of it treat it like a teammate. Here are nine concrete ways to do that.

11 min read Updated 2026-06-15

There’s a moment everyone hits in their first week with Claude Code: you ask for something, it does almost the right thing, you fix it by hand, and you start wondering whether this is actually faster than just doing it yourself.

It is — but not until you stop treating it like a vending machine and start treating it like a capable, slightly over-eager teammate. The difference is almost entirely in how you set up the work, not in what you ask for. Here are nine workflows that make the difference, in rough order of how much time they’ll save you.

1. Make it plan before it acts

The fastest way to waste time is to let Claude charge into a vague request. The fix is one sentence:

Before you change anything, walk me through your plan.

Better yet, use plan mode (Claude Code has a dedicated planning state). Claude reads what it needs, proposes the steps, and waits for your approval before it touches a single file. You read the plan in ten seconds and catch the misunderstanding that would have cost you ten minutes. This one habit pays for itself more than any other.

2. Give it a memory file

Claude Code reads a file called CLAUDE.md at the start of every session and treats it as standing instructions. Put the things you’d otherwise repeat into it:

- This project uses British spelling.
- Never edit files in /vendor — they're generated.
- Tests live next to the file they test, named *.test.ts.
- When in doubt, ask before installing a new dependency.

Now you never re-explain your conventions. It’s the difference between onboarding a new teammate every morning and having one who already knows the house rules.

3. Turn good prompts into slash commands

The third time you type roughly the same instruction, save it. A slash command is a reusable prompt you trigger with one word:

Save these exact steps as a slash command called /ship.

From then on, /ship runs the whole sequence — run the tests, write a summary, draft the commit message — without you re-typing a paragraph. Teams commit these to the repo so everyone shares the same muscle memory.

4. Let it work in the background while you keep moving

For anything that takes more than a minute — a big refactor, a slow test suite, a data crunch — you don’t have to sit and watch. Claude Code can run work in the background and ping you when it’s done. The trick is to batch: kick off the slow thing, then start the next task instead of babysitting the first.

5. Split big jobs across subagents

When a task is really several tasks — “review these twelve files,” “investigate three possible causes” — ask for subagents. Each one gets its own clean context and works in parallel, then reports back:

Spin up a subagent per file to review these for bugs, then summarise the findings in one list.

This is faster and often better: a fresh agent per file doesn’t get distracted by the other eleven.

6. Keep sessions focused, and compact when they drift

Long sessions accumulate clutter — half-finished ideas, dead ends, output you’ve already acted on. When Claude starts feeling forgetful or sluggish, run /compact to summarise the conversation down to what matters, or just start a fresh session for a new task. A focused context produces sharper answers. (If you want the why behind this, see our guide on context engineering.)

7. Review the diff, not the vibe

When Claude finishes, it shows you exactly what changed — a diff, line by line. Read it. It’s tempting to skim and say “looks good,” but the diff is where you catch the one file it touched that it shouldn’t have. Treat every change like a teammate’s pull request: approve what’s right, push back on what isn’t. Claude doesn’t take it personally.

The change to config.js looks wrong — revert just that file and explain why you added it.

8. Set the right effort for the job

Not every task needs Claude’s deepest thinking, and not every task should get its quickest. For a gnarly bug or a design decision, ask it to think harder (or raise the effort/thinking level). For a rote rename across forty files, keep it fast. Matching effort to difficulty saves both time and money — and you can switch models with /model when a task clearly wants the cheaper, faster one or the most capable one. Our guide on which model to use covers when to reach for each.

9. Connect it to your actual tools

By default Claude Code works with your files and your terminal. With MCP (the Model Context Protocol), it can also reach your real tools — your issue tracker, your docs, your database, a browser. Suddenly “look at the failing ticket, find the cause, and propose a fix” is a single request instead of a morning of copy-paste. This is the biggest unlock once the basics feel natural; we cover it end to end in how to use MCP with Claude Code.

The through-line

Notice what every one of these has in common: you’re doing less typing of instructions and more deciding and reviewing. That’s the real shift. Claude Code is at its best when you treat the prompt as delegation and the diff as oversight — when your job becomes saying what “good” looks like and checking that you got it.

Pick two of these to try this week. Plan-before-act and a memory file are the two with the steepest payoff for the least effort. The rest will start to feel obvious once those are habit.

claude-codeworkflowsproductivityplan-modesubagentsslash-commands

Questions people ask

Do I need to be a programmer to use these workflows?
No. The habits here — planning before doing, saving prompts as commands, keeping a memory file — help anyone who works with files and text. A few examples assume a code project, but the patterns transfer to writing, data, and research work just as well.
What's the single most impactful habit?
Asking Claude to make a plan before it touches anything. It costs you ten seconds of reading and catches the misunderstandings that would otherwise cost you ten minutes of cleanup. Plan mode exists specifically for this.
Will these slow me down at first?
Slightly, for a day or two — the way learning any tool does. Saving your first slash command or writing your first memory file feels like overhead. By the end of the week it's the reason you're faster than you were before.