30 Days to Claude Code

A gentle start for people who’ve never used the terminal before.

If the word terminal makes you a little nervous, you’re in the right place. This guide assumes you have never typed a command into a black window in your life, and that’s totally fine.

Here’s the deal: Claude Code lives inside a thing called the Terminal. The terminal is just a window where you type instructions to your computer instead of clicking on things. That’s it. It looks intimidating because there are no buttons, but you’ll be comfortable with it within a week.

Think of it like traveling. When you go somewhere new, you don’t learn the language — you learn a handful of phrases. Hello. Please. Thank you. Where’s the bathroom. It is remarkable how far that gets you. The terminal works the same way: it’s a foreign country, not a foreign discipline.

The apps you already use are the tourist district — menus, buttons, signs in your language. Comfortable and guided, but you can only do what the tour allows. The terminal is where the locals live. You speak, the computer answers, and you can go anywhere the tour never reached. You don’t need to be fluent. You need a phrasebook — that’s this guide — and a local who speaks both languages. Claude is the local. Every traveler is nervous before the first trip. Then they arrive, and it’s just a place.

The Builder’s Ladder — four rungs. Pick yours.
  1. Consumer — you use the AI tools others built. ChatGPT, Claude.ai, ambient scribes
  2. Customizer — you bend tools to your context. System prompts, custom GPTs, Skills, MCP
  3. Prototyper — you build small working tools for yourself. Artifacts, Claude Code, Replit
  4. Builder — you ship software others rely on. Production apps, deployed services

Most clinicians get enormous value at Rungs 2 and 3. Rung 2 can save you an hour a week by next Friday. Rung 3 solves problems no vendor will solve — not at any price, not in any quarter. Rung 4 is optional; you do not need it to win. These 30 days walk you comfortably onto Rung 3.

The shape of the month. Four phases, each a small step up:

  • Days 1–7 · Getting Comfortable. First conversations. Moving around. Reading files. Cleaning up a mess.
  • Days 8–14 · Real Work. Reformat a document. Compare two things. Numbers and data.
  • Days 15–22 · Building Tools. Your first mini-tool. Then a smarter one. Then a real one.
  • Days 23–30 · Making It Yours. Find your annoyances. Solve them. Teach someone else.

Five to fifteen minutes a day. One small task. One small win. By Day 30, you have your own toolkit.

A few promises before we start:

  • The commands in this guide are safe. The basics — looking around, moving between folders — can’t hurt anything. Later, when Claude is doing more (creating files, moving things), it’ll ask permission first. You’ll see what it’s about to do before it happens.
  • Claude will explain anything you don’t understand. When in doubt, ask it: “What does this mean?” or “Is this safe to run?”
  • You have a second helper. Echs, the chat button on this page, answers questions about the program itself — what a day means, whether you’re ready for the next phase, where something is covered. Claude is the local in the terminal; Echs is the guide for the guide.
  • Going slow is fine. This is a 30-day program, but if a day takes you two days, who cares.
  • Copy and paste is allowed. You don’t need to type commands by hand. Highlight the command, Cmd+C, click into the terminal, Cmd+V, hit Enter.
  • It uses your Claude subscription. Claude Code requires a paid plan (Pro is plenty for this program). Very heavy use can hit plan limits; the pace here won’t bump into anything.

A few things this guide assumes:

  • You’re on a Mac (macOS 13 or later). Windows users — Anthropic has a parallel walkthrough at code.claude.com/docs/en/terminal-guide.
  • If your work involves patient health information, stick to non-clinical files for this program — your own notes, drafts, downloads. PHI on a personal machine is a separate setup conversation worth having before you point Claude at it.

Time per day: 10 to 20 minutes. Some days are very short.

Day 00

Setup — before Day 1

What Claude Code is. Claude Code is Claude — the same AI you might already use in a browser — running inside your terminal. The difference matters. In a browser tab, Claude can only see what you paste in. Here, with your permission, it can read your files, create new ones, run commands, and help you build small tools. Everything stays on your computer. You’re always the one deciding what it does.

Open the Terminal. On your Mac:

  1. Press Cmd + Space (this opens Spotlight search).
  2. Type Terminal.
  3. Hit Enter.

A window opens with some text and a blinking cursor. That’s the terminal. You did it.

You’ll see something like this:

yourname@MacBook ~ %

This is called the prompt. The computer is waiting for you to type. The % (or sometimes $) means “I’m ready for instructions.”

What is “typing a command”? You type words at the prompt, then press Enter. The computer does the thing. That’s the whole interaction.

Try this. Type these letters exactly and press Enter:

pwd

You’ll see something like /Users/yourname. That just told you which folder you’re currently “in.” More on that tomorrow.

Install Claude Code. One command, once. Like getting a passport: you do it a single time, then you just travel. Copy this line, paste it into your terminal (Cmd+V), and press Enter:

curl -fsSL https://claude.ai/install.sh | bash

(On Windows, open PowerShell instead and run curl -fsSL https://claude.ai/install.cmd -o install.cmd && install.cmd — the rest of the program works the same.)

You’ll see text scroll by. When it finishes, you should see “Claude Code successfully installed!” You don’t need to install anything else first — the installer brings everything it needs. If something goes wrong, the official troubleshooting is at code.claude.com/docs/en/terminal-guide.

To check it worked, close the Terminal window and open a new one, then type:

claude --version

If you see a version number, you’re set.

Log in (first run only). The first time you type claude, it will ask you to sign in — it opens a browser page, you approve it, and you’re back in the terminal. It uses your existing Claude account (a paid plan; Pro at $20/month is plenty for this program). You won’t be asked again.

If anything ever looks off — weird errors, claude not found, login loops — there’s a built-in checkup:

claude doctor

It checks the installation and tells you what to fix, in plain language.

If you ever feel stuck
Press Ctrl + C. That cancels whatever is happening and gives you back the prompt. To close the terminal entirely: Cmd + Q, or just close the window.

You’re the one deciding. Claude will sometimes suggest commands, and sometimes ask permission to change a file. You are never required to say yes. If anything feels uncertain, you can ask what a command does before running it, ask Claude to explain its plan first, or just close the window and come back tomorrow. Nothing breaks if you pause.

OK. You’re ready.

Phase One

Getting Comfortable

Days 1 to 7 · Learning where you are and how to talk to Claude.

The hardest part of the terminal isn’t the commands. It’s the feeling of being lost. This week is about building a mental map: where are you, where can you go, and how do you ask Claude for help.

Day 01

First Conversation

Open the terminal (Cmd+Space, then “Terminal,” then Enter).

Type:

claude

Press Enter. Claude Code starts up. The prompt changes. Now Claude is listening.

First time only
A browser tab will open asking you to log in. That’s expected — Claude needs to know which account is yours. Approve it, then come back to the terminal. You won’t see this prompt again on this computer.

Type this and press Enter:

Hi Claude. I'm brand new to the terminal. Can you tell me where I am in my computer right now, and explain what that means in plain English?

Read Claude’s answer. Then ask:

What's in this folder? Show me as a simple list.

When you’re done, type:

/exit

and press Enter. That closes Claude. You’re back to the regular terminal prompt.

What you just learned
You can talk to your computer in normal English now. Claude translates between what you want and what the system needs to hear.
Day 02

Moving Around Without Claude

Today, no Claude. We’re just going to practice moving between folders, because folders are where everything lives.

Three commands. That’s all you need.

pwd

Stands for “print working directory.” It tells you where you are. Try it.

ls

Lists what’s in the folder you’re in. Try it. You’ll see things like Documents, Downloads, Desktop.

cd Documents

cd means “change directory.” It moves you into a folder. Try cd Documents, then run pwd again. See? You moved.

To go back up one level (out of Documents, back to your home folder):

cd ..

The two dots mean “the folder above this one.”

To jump straight to your home folder from anywhere:

cd ~

The ~ (tilde) is shorthand for your home folder.

Practice. Use cd, ls, and pwd to wander around. Go into Documents, then Downloads, then back home. Get a feel for moving.

What you just learned
You’re always somewhere in your computer. These three commands let you find out where, see what’s around, and move.
Day 03

Make a Home Base

Today we’ll create a folder where you’ll do all your practice for the next 28 days.

First, get into your home folder:

cd ~

Now start Claude:

claude

Ask Claude:

Please create a folder in my home directory called claude-lab. Inside it, create a file called reflections.md with today's date as a header and a short note saying this is where I'll track what I learn.

Then ask:

Show me what you created so I can see it.
A note on permissions
When Claude is about to create or change a file, it’ll usually show you the plan and ask for permission first. Read it. If it looks right, approve. If not, say no, or ask Claude to explain. That confirmation step is how you stay in the loop — it’s a feature, not a hassle.

Exit Claude with /exit.

Back at the regular terminal, navigate into your new folder:

cd ~/claude-lab
ls

You should see reflections.md.

What you just learned
Claude can create files and folders for you. You don’t need to remember the commands. You just describe what you want.
Day 04

Reading and Reacting

Find any document on your computer you’ve written recently. Notes, a draft, an email you saved, anything with text. If you can’t think of one, just use the reflections.md you made yesterday.

Get into your claude-lab folder:

cd ~/claude-lab
claude

Ask Claude:

Read the file at [paste the full path to your document] and tell me three things: What's it about? What's the main point? What questions does it leave unanswered?
Tip on file paths
If your file is on your Desktop, the path is ~/Desktop/filename.txt. If it’s in Documents, it’s ~/Documents/filename.txt. The ~ always means “starting from my home folder.”

Try a follow-up question based on what Claude said.

What you just learned
Claude can read your files and think about them, not just summarize. It’s like having a smart friend look over your shoulder.
Day 05

Cleaning Up a Mess

Open Claude in your lab folder:

cd ~/claude-lab
claude

Ask Claude to create a messy file:

Create a file called raw-notes.txt and fill it with about 15 random unorganized notes. A stream of consciousness mix of ideas, errands, questions, and observations. Make it look like real messy notes.

Look at the file (ask Claude to show it to you, or open it in Finder if that’s easier).

Now ask:

Look at the messy notes you just made. Find the themes hiding in there, then reorganize everything into a clean outline. Save the clean version as organized-notes.md.
What you just learned
Claude is great at finding structure in chaos. This is one of the most useful things it does, turning rough material into something usable.
Day 06

Asking Your Computer Questions

You can ask Claude questions about your own computer that would normally take a lot of clicking around.

cd ~
claude

Try these one at a time:

What are the 10 biggest files in my Downloads folder?
How much free space do I have on my hard drive?
What apps do I have installed?
What's been modified in my Documents folder this week?

Pick one answer that surprises you and ask a follow-up.

What you just learned
Your computer knows a lot about itself. You don’t have to dig through Finder anymore. You can just ask.
Day 07

Look Back

cd ~/claude-lab
claude

Ask Claude:

Take a look at everything in this folder and tell me what we've built together this first week.

Then:

Add a section to reflections.md called "Week 1" with a short summary of what I learned and what still feels confusing.

Finally:

What's one thing I should try this week that I haven't tried yet?
What you just learned
Periodic check-ins keep you oriented. Claude is happy to help you reflect, not just produce.
Phase Two

Doing Real Work

Days 8 to 14 · Applying what you know to actual things in your life.

You’ve practiced enough. Now we use Claude on real stuff. Your real documents, your real folders, your real questions.

A small reframe before we move on: you might have noticed you haven’t actually memorized many commands. That’s not an accident — it’s the whole point. You’re learning a pattern: describe what you want, look at what Claude did, refine it, and (later in this program) save the useful ones. The pattern transfers to anything. The commands don’t.

Day 08

Read Something Hard

Find a long document you’ve been meaning to read or process. A report, an article you saved, meeting notes, anything.

cd ~/claude-lab
claude
Read the document at [path to your document]. Give me three summaries: one sentence, one paragraph, one page. Then tell me what assumptions the author is making without saying so directly.
What you just learned
Claude doesn’t just summarize. It reads critically. Use this when you don’t have time to read something carefully yourself.
Day 09

Change the Shape of Things

Pick something you have in one format and ask Claude to convert it to another. For example:

  • Messy meeting notes into a clean checklist of action items
  • A wandering brainstorm into a structured proposal
  • A long email chain into a one-paragraph summary
  • A list of names and numbers into a formatted table

Here’s what one of these looks like in practice. If you start with messy notes like:

- call jen
- budget weird
- maybe move launch
- ask about signup bug

You might ask Claude to turn them into:

## Action Items
- Call Jen
- Investigate signup bug

## Decisions Pending
- Whether to move launch

## Finance
- Review budget discrepancy

Try two of these.

What you just learned
Format changes that used to take 20 minutes of copy-paste-edit now take 20 seconds.
Day 10

Compare Two Things

Find two documents about a similar topic. Two articles, two drafts, two sets of notes.

claude
I have two documents at [path 1] and [path 2]. Read both. Where do they agree? Where do they disagree? If you had to write one document that combined the best of both, what would it say?
What you just learned
Holding two things in your head and comparing them is hard. Claude is good at this kind of comparison work.
Day 11

Numbers and Data

If you have a spreadsheet or CSV file, use it. If not, ask Claude to make one:

Make me a CSV file with 25 rows of fake but realistic data about books: title, author, year, genre, rating.

Then:

Look at the CSV. What's the average rating? Which genre shows up most? Are there any obvious errors or weird entries?
Make a cleaned-up version and save it as books-clean.csv.
What you just learned
You don’t need to be a spreadsheet wizard. Claude can answer data questions in plain English.
Day 12

The Downloads Folder Disaster

Almost everyone’s Downloads folder is a junkyard. Let’s start to fix yours — safely.

cd ~
claude
Take a look at my Downloads folder. Tell me what's in there: how many files, what types, how much space they take up, and how old most of them are.
Propose a way to organize this. Don't do anything yet, just suggest a plan.

If the plan sounds good, start small:

Create a folder called Downloads-Archive inside Downloads. Move only the obvious junk into it — old installers, files I clearly don't need anymore. Don't delete anything. Show me each move as you go.

Look at what Claude moved. If you’re comfortable with how it went, do a second pass with more files. Save deletion for later, once you’ve seen how Claude approaches your folder.

Important
Today, don’t delete anything. Moving files into the archive folder is reversible — you can always pull them back. Deletion is a separate decision for a later day.
What you just learned
Organizing is a task you can delegate. You don’t have to do it yourself.
Day 13

Explore Something You Didn’t Make

Find a folder on your computer that you didn’t create or don’t fully understand. Maybe a project someone shared, an app’s settings folder, or a downloaded codebase.

claude
Take a look at the folder at [path]. Explain what it is, how it's organized, and what the most important files seem to be. Pretend I've never seen it before.
What you just learned
Unfamiliar things become familiar fast when you have a guide who can read everything at once.
Day 14

Free Day

No new instructions today. Pick one real task from your actual life and try to use Claude for it.

When you’re done, update your reflections.md:

cd ~/claude-lab
claude
Add a section to reflections.md called "Week 2" with what I tried, what worked, and what was harder than I expected.
What you just learned
Transfer. The point isn’t to follow this guide forever. It’s to recognize when Claude would help you.
Phase Three

Saving Your Work and Building Tools

Days 15 to 22 · From asking Claude things to making your own helpers.

Up to now, every conversation with Claude has been one-and-done. This week, you’ll start making things that stay. Little tools you can run again later.

Day 15

Your First Mini-Tool

A heads-up before you start: when this guide says “tool,” it doesn’t mean an app with windows and buttons. It means a small file — usually a short script — that you can run from the terminal and it does one specific thing for you. Think “saved instruction” more than “software.”

cd ~/claude-lab
claude

Pick one of these and ask Claude to build it:

  • A tool that creates a new dated journal entry every time I run it.
  • A tool that adds a line to a running to-do file with a timestamp.
  • A tool that shows me everything I’ve changed in my Documents folder today.

Once Claude builds it, ask:

Now show me exactly how to run this. Walk me through it like I've never done this before.

Try running it.

What you just learned
You can save instructions for later. Instead of asking Claude to do something every time, you build a tool once and reuse it.
Day 16

Make It Smarter

Take yesterday’s tool and ask Claude to add something.

If it makes a journal entry, ask it to also include the weather. If it logs to-do items, ask it to mark them with categories. If it shows your changes, ask it to also tell you the file sizes.

Modify the tool you made yesterday so that it also [thing you want].
What you just learned
Tools grow with you. Start simple, then add what you need.
Day 17

Doing Several Things in a Row

Ask Claude:

Make me a tool that does four things when I run it:
1. Checks that a folder called "daily-notes" exists, and creates it if not.
2. Makes a new file inside named with today's date.
3. Puts a header in the file with the date and time.
4. Opens the file for me to start writing.

Run it.

What you just learned
Real automation chains multiple steps together. Each step sets up the next.
Day 18

When Something Breaks

Take any tool you’ve made and intentionally break it. Change a folder name, delete a piece, anything.

Run it. Watch the error message.

Before asking Claude to fix it, ask:

This error came up: [paste the error]. What does it mean? Don't fix it yet, just help me understand what went wrong.

Then ask Claude to fix it together with you.

What you just learned
Errors aren’t scary. They’re the computer telling you exactly what’s wrong. The more you read them, the less they intimidate you.
Day 19

A Time Machine for Your Files (Git)

Git is a tool that lets you save snapshots of your work and go back if you mess up. It has a reputation for being confusing. Claude makes it easy.

If you’ve used an EHR, you already understand the idea: every version of the chart is kept, every change has a name and a timestamp on it, and nothing is ever really gone. Git is that, for your files.

Three words you’ll hear, translated:

  • Repository (or “repo”) — a folder git is watching.
  • Commit — one labeled snapshot. The label is yours to write.
  • Diff — what changed between two snapshots.

That’s the whole vocabulary you need. Claude handles the actual commands.

cd ~/claude-lab
claude
Set up git in this folder. I've never used git before, so explain what you're doing as you go.

Then:

Save a snapshot of everything we have right now, and label it "end of week 3 setup."

Change something in reflections.md. Then:

What's changed since my last snapshot?
Save another snapshot with a label that describes what changed.
What you just learned
Git is just labeled snapshots. Don’t worry about the rest. Claude handles the commands.
Day 20

Undoing Mistakes

In your lab folder, do something “bad.” Delete a section of reflections.md, mess up the formatting, whatever.

Then:

I just messed up reflections.md. Use git to get it back to the way it was at the last snapshot.

See how quickly you can recover. Then look at the trail you’ve built:

Show me the history of snapshots in this folder, in plain language.

One honest caveat: git can only restore what was in a snapshot. A file you never committed, or a folder git isn’t watching, has no time machine. The habit that protects you is cheap — when something feels worth keeping, say “save a snapshot.” Takes five seconds.

What you just learned
With git in place, you can be braver. Mistakes are recoverable, so you can experiment more freely.
Day 21

Build Something You’ll Actually Use

This is the big one. Think of something annoying you do regularly. Examples:

  • Sending the same kind of email over and over → a template generator
  • Forgetting what you worked on yesterday → a daily summary tool
  • Wasting time finding files → a tool that shows recent activity
  • Manually organizing photos by date → an auto-sorter

Ask Claude:

I have this problem: [describe it]. Help me design a small tool that solves it. Ask me questions about what I want before you start building.

Spend the day building it the way you want it.

Stuck for ideas? Pick one of these and adapt it:

  • A morning-brief tool that opens your claude-lab folder, shows what changed yesterday, and creates today’s reflection file ready to write in.
  • A “what was I doing?” tool that scans your Documents folder and tells you the five files you’ve touched most recently.
  • A meeting-prep tool you point at a folder of past notes — it pulls out anything related to a name or topic you give it.

Don’t pick the most ambitious one. Pick the one that solves the most-annoying part of your week.

What you just learned
The most useful tools are the ones you build for yourself, because nobody else has your exact problem.
Day 22

Inventory Your Stuff

cd ~/claude-lab
claude
Look through this whole folder. Make me a cheat sheet that lists every tool we've built, what it does, and exactly how to run it. Save it as my-tools.md.

Use one of your tools today as part of your real day.

What you just learned
Tools you forget about aren’t tools. They’re clutter. A cheat sheet keeps them alive.
Phase Four

Making It Yours

Days 23 to 30 · The terminal becomes a place you live, not visit.

You’ve come a long way. The remaining days are about smoothing out the rough edges so Claude Code feels natural. Not like a separate thing you do.

Day 23

Teaching Claude About Your Project

Pick a folder you work in often. Maybe for a job, a hobby, or a side project.

cd [path to that folder]
claude
I want to make a CLAUDE.md file for this folder. It should tell future-you (next time I open Claude here) what this project is, how it's organized, what I care about, and any rules you should follow when helping me. Ask me questions, then write the file.

Now every time you open Claude in that folder, it’ll automatically read this file first.

What you just learned
You don’t have to re-explain context every session. CLAUDE.md does it for you.
Day 24

Find Your Annoyances

For one day, every time something annoys you on your computer, write it down. One sentence per annoyance. Something small that takes too many clicks, too many tabs, or too many minutes.

Real ones, from real clinicians: “Prior auths for ADHD meds take 20 minutes each — I write the same letter every week.” “I can never find the right Vanderbilt or PHQ scoring chart in under three clicks.” “Sports physicals — every form is different, every league wants something else.” “I want a one-pager I can hand a parent about screen time, by age, without ten tabs.” None of these has a vendor. Each is about twenty minutes of building.

End of the day:

claude
Here are five things that annoyed me today: [list]. For each one, could Claude help? What would it look like?

Pick one. Build a fix.

What you just learned
Noticing friction is a skill. Most people don’t notice it because they assume it’s just how things are. If it annoys you every week and no vendor sells a fix, it’s probably twenty minutes of building.
Day 25

Working Across Many Files

Find a set of files that belong together. A project, a collection of notes, related documents.

claude
Look at all the files in [folder]. Find any inconsistencies between them. Are there things that contradict each other? Information missing in some but not others?
Now make one summary document that combines everything I'd need to know from all of these.
What you just learned
Claude can hold many files in its head at once. You don’t have to be the one keeping them straight.
Day 26

Tell Claude How You Like Things

A few days back (Day 23), you wrote a CLAUDE.md — context about a specific project that Claude reads when you open that folder. Today is different. You’re writing a personal preferences document — about how you work, not any single project. File naming, organization habits, what would freak you out if Claude did it without asking. You can hand it to Claude in any session and it’ll adapt.

cd ~/claude-lab
claude
I want to make a "preferences" document I can show you in future sessions. Ask me questions about how I like to work: file naming, where I save things, how I like writing organized, what makes me trust your suggestions, what would freak me out. Then write up a preferences.md based on my answers.
What you just learned
Claude is great at adapting to you, but only if you tell it how. Being explicit upfront saves friction later.
Day 27

Solve a Real Problem

Find something on your computer that isn’t quite working. A script that’s broken, a process that gives weird results, a file that won’t open right.

claude

Work through it step by step:

Something's wrong: [describe]. Before fixing it, let's figure out together what's happening. What do you think is going on, and what should we check first?
What you just learned
Debugging is just curiosity applied systematically. Don’t jump to fixes. Understand first.
Day 28

Try Something Ambitious

Pick something that feels just barely out of reach. Examples:

  • Make me a chart that shows how my [data] has changed over time.
  • Build me a tiny website that lists all my projects.
  • Take my notes from the last month and write a short essay summarizing what I’ve been thinking about.
  • Connect this to my calendar somehow.

If Claude can’t do it, ask why and what alternatives exist.

What you just learned
You won’t always succeed, but trying is how you find out what’s possible.
Day 29

Teach Someone

Write a short guide. One page. Explaining the most useful thing you’ve learned this month. Pretend you’re writing it for the friend you have who would benefit most.

Save it in your lab folder.

Bonus: actually send it to that friend.

What you just learned
Teaching forces you to understand. If you struggle to explain something, that’s where to study more.
Day 30

Look at the Map

cd ~/claude-lab
claude
Take a tour of my whole claude-lab folder. Walk me through what we built, in roughly the order I built it. What did I learn? What got easier as I went?
Add a final section to reflections.md called "After 30 Days." Help me write an honest assessment: what changed about how I use my computer, what still feels hard, and what I want to keep doing.
Help me pick one habit I'll keep using Claude Code for, starting tomorrow.
What you just learned
The program is over. Now you just… use it.

After the 30 Days

You’ve built:

  • Comfort with the terminal. That window doesn’t scare you anymore.
  • A working relationship with Claude. You know how to ask for what you want.
  • Some tools that are actually yours. Small, useful, fit your life.
  • A reflex for noticing friction. You spot tasks Claude could help with.
  • Confidence to break things, because git has your back.

Where to go next, when you’re ready:

  • Try Claude Code inside an editor like VS Code (it has a built-in version).
  • Learn about “MCP servers.” Ways to connect Claude to your email, calendar, or other apps.
  • Build more ambitious tools as needs come up.
  • Show a friend how to do this.

The bare minimum you need to remember

pwd
Where am I?
ls
What’s here?
cd foldername
Go into that folder
cd ..
Go up one level
cd ~
Go to my home folder
cd ~/Documents
Jump to Documents
claude
Start Claude
/exit
Quit Claude
Ctrl + C
Cancel whatever’s happening
claude --version
Check that Claude’s installed
“What does this error mean?”
“Is this safe to run?”
“Explain what you just did in simple terms.”
“Show me what’s in this folder.”
“What would happen if I [thing]?”
“Explain like I’m new to this.”

When things go weird

  • The terminal is showing something that won’t stop.
    Press Ctrl + C. That cancels.
  • I typed something wrong and the terminal shows “>”
    You’re in the middle of an unfinished command. Press Ctrl + C to escape.
  • Claude is doing something I didn’t expect.
    Type “stop” or press Ctrl + C, then ask Claude to explain what it was doing.
  • I deleted something important.
    If you set up git (Day 19), you can probably get it back. Ask Claude.
  • I accidentally exited Claude.
    No problem. Just type claude again and press Enter. You’re back.
  • macOS is asking permission for Terminal to access a folder.
    Click OK or Allow. That’s how macOS lets Claude read the folders you’ve asked it to look at. You can change this later in System Settings → Privacy & Security if you want.
  • A command says “permission denied.”
    Don’t force it. Ask Claude what the message means before you do anything else.
  • I’m overwhelmed.
    Close the terminal. Come back tomorrow. The terminal is not going anywhere, and neither is Claude.
  • My question isn’t on this list.
    Ask Echs — the chat button on this page. Or ask Claude itself, right in the terminal: it can usually explain what just happened.

You don’t need to remember commands. You need to remember that you can ask.