What Claude actually is (and isn't)
In Level 1 you learned to talk to your computer by typing. You can move around, make things, delete things. The computer does what you say.
That was the warmup. Now meet someone who can type back — and do things on your behalf.
Claude Code is an agent: a smart assistant that lives in your terminal, sees the folder you opened it in, and can read your files and run real commands.
Already know what Claude Code is? Skip to Lesson 2.2 and install it.
That’s the whole idea. The rest of this lesson exists to make sure you don’t think it’s something it isn’t.
Claude vs. Claude Code
Two things, same root word. Worth getting straight up front — same trick as Lesson 0.4, where a program and a running program shared a name but did different jobs.
- Claude is the model — the AI brain trained by Anthropic. It lives in a website (claude.ai), inside apps, and inside other products. It answers when you write to it.
- Claude Code is what happens when you give Claude hands. It’s the model plus a set of tools — read files, run commands, edit code, search the web — wrapped into a program that runs in your terminal.
Same brain. Very different superpowers.
Not just a smarter chatbot
This is the part that trips people up, especially if you’ve used ChatGPT or claude.ai in a browser tab.
A chatbot in a browser can describe what ls would do in your folder. It can guess. It
can be confidently wrong — it has no way to actually look.
Claude Code can run ls in your folder, read the real output, and tell you what’s
actually there. Then it can open one of those files. Then it can change a line in it. Then it
can re-run a command to check the change worked.
A chatbot talks about your computer. An agent uses it.
The difference sounds small in a sentence. In practice it’s the difference between getting advice and getting help.
What it gets you
Once it’s installed and you’re signed in (next two lessons), you’ll be able to:
- Point Claude at a folder and ask “what is this project?” — it’ll read the files and tell you.
- Ask it to fix a bug — it’ll find the file, read the function, and propose an edit.
- Ask it to run your tests — it’ll run them and read what came back.
You don’t have to copy-paste code in and out of a chat window. Your files stay where they live, and Claude works on them directly.
What’s next
You know what Claude Code is. Time to actually get it on your machine.