Free // No account needed to read this // Mr. Mustard's beginner brief

Never used Claude or a terminal?
Start here.

This is the ten-minute setup that every MUSTARD MODE mission assumes you already have. No jargon, no skipped steps. By the end you will have an account, a terminal you are not afraid of, and Claude Code answering you for the first time.

01

Know the difference: claude.ai vs. Claude Code

claude.ai is the chat website. You type, Claude replies, you can attach files and images. It is the fastest way to think, write, research, and get advice. Nothing gets installed.

Claude Code is a different tool: a command-line agent that lives on your own computer, inside a terminal, where it can read, write, and run real files and real code. It is what actually builds software, not just talks about it. Both run on the same subscription.

Rule of thumb: chatting, writing, thinking, planning, use claude.ai. Building an app, a website, or anything that needs to run on your computer, use Claude Code.

02

Create your account and pick a plan

Go to claude.ai and sign up with an email or Google account. Free works for light chatting. For anything in MUSTARD MODE, and for daily real use, the Pro plan (about $20/month) is the sane starting point. If you plan to run Claude Code for hours a day, Max exists for that.

One account, one login, powers both claude.ai and Claude Code. You are not paying twice.

03

Open a terminal for the first time

A terminal is just a plain text window where you type commands instead of clicking icons. It looks intimidating for about ten minutes and then it never does again.

On a Mac: press Cmd + Space, type Terminal, press Enter. A black or white text window opens. That is it, that is the terminal.

On Windows: press the Windows key, type PowerShell or Windows Terminal, press Enter. Either works. Windows Terminal looks nicer, PowerShell is the classic, both run the same commands.

Nothing you type in a terminal by accident breaks your computer. The worst normal mistake is a typo that does nothing. Explore without fear.

04

Install Claude Code and run your first command

With your terminal open, go to claude.ai/code and follow the one-line install command for your system. Paste it into the terminal (right-click to paste on most setups, or Cmd/Ctrl + V) and press Enter.

Once installed, make yourself a practice folder so you never worry about touching real files: type mkdir mustard-lab, then cd mustard-lab, then just type claude and press Enter. You are now in a live session.

Sign in when it asks (same account as claude.ai). Then type one sentence: say hello and tell me what you can do in this folder. Read the reply. You just ran your first session.

05

The three ideas that make everything else make sense

A prompt is just what you type. Better prompts describe the who, what, and outcome specifically, instead of one vague word. "Fix my app" is a bad prompt. "The save button does nothing when I click it, here is what I expected" is a good one.

Context is what Claude currently remembers: this conversation, the files in your folder, anything you have shared. Claude Code reads your project folder, claude.ai chat reads what you have typed and attached in that conversation. New chat, new folder, means a fresh memory unless you tell it otherwise.

Claude Code always asks permission before it changes or runs anything on your computer. That pause is not a bug, it is your steering wheel. Read what it is about to do, then approve or redirect. You are always the one driving.

06

Two habits that keep you safe

Never paste real passwords, API keys, or other secrets directly into a prompt as plain examples. If Claude needs a real key to run something, it will tell you where to store it safely (usually an environment file it helps you set up), not have you type it into the chat.

When in doubt, ask before you approve. Claude Code will explain any action in plain English if you ask "what does this do and why." A ten-second question beats an hour of confusion.

The only 7 terminal commands you need on day one

cd folder-name

Move into a folder (change directory).

cd ..

Move back up one folder.

ls

List what is in the current folder. (Windows: dir)

pwd

Print where you are right now. (Windows: cd with no argument)

mkdir folder-name

Create a new folder.

clear

Wipe the screen so you can see clearly. (Windows: cls)

Ctrl + C

Stop whatever is running. Your emergency brake.

Mr. Mustard

That is the whole ramp.

You now know more about Claude than most people who have used it for a year. Mission one of the Code track picks up exactly where this page ends, with real coaching and a real build.

Play your free coaching session →