Claude Code

Four Upgrades That Make Claude Code Run Like a Newer Model

The exact system that makes today’s Claude run like the model that isn’t out yet.

5min read
6prompts to copy
8sections

Everyone is waiting for the next model. You do not have to. The model is not the bottleneck: out of the box Claude forgets everything when you close the chat, it stalls the second it needs a tool it does not have, and it works one task at a time, alone.

Fix those three things and the same model starts behaving like a version that is not released. Here is the whole setup, in the order to build it.

Upgrade 1 of 4Memory: the second brain

Claude Code reads a file called CLAUDE.md at the start of every session. Anything in it is loaded automatically, forever. That is the whole trick: your project, your preferences, your standards stop being something you re explain every single chat.

Two locations, both real:

~/.claude/CLAUDE.md is global. It loads in every project. Put who you are and how you like to work here.

./CLAUDE.md sits in a project folder and loads only for that project. Put the stack, the commands and the gotchas here.

GENERATE ONE AUTOMATICALLY
# in your project folder
claude
/init
# Claude reads the repo and writes a CLAUDE.md for you.
# Then edit it any time with:
/memory

You can also append to memory mid conversation. Start any message with # and Claude writes it to CLAUDE.md instead of just answering:

ADD A MEMORY IN ONE LINE
# always use pnpm, never npm
# the staging DB is read only, never write to it
# I want the answer first, then the reasoning

If you are starting from scratch, paste this in as your global file and edit it:

STARTER ~/.CLAUDE/CLAUDE.MD ## Who I am I run a small business. I ship fast and I care about clarity over polish. ## How to answer me Lead with the answer, then the reasoning. No preamble. If you are not sure, say so instead of guessing. ## Standards Match the style of the surrounding code. Never commit or push unless I ask. When a task is done, tell me exactly what you verified.
Why this one matters most Every other upgrade gets better when Claude already knows your context. Memory is the cheapest permanent upgrade you can give it, and it takes about ten minutes once.

Keep reading

Free, for an email.

Unlocks 7 more sections, 4 copy-paste prompts, the document version, and every other guide on the site, for free. Enter your email once to keep reading.

19,000+ follow where these guides come from.No spam. Unsubscribe in one click.

Read next