Part 1: Boot Up
The Problem
You've been copy-pasting between ChatGPT and your files. Losing context every conversation. Waiting for dev to make simple changes.
There's a fundamentally better approach — and it starts with understanding what Claude Code actually is.
What Claude Code Actually Is
The difference between chat-based AI and an AI agent that lives in your project:
ChatGPT / Claude Web
Claude Code
Lives in a browser tab
Lives in your terminal
You paste code to it
It reads your files directly
It tells you what to do
It does the work itself
Context resets every chat
Context persists via CLAUDE.md
Output: text you copy
Output: actual file changes, commits, deploys
Claude Code is an AI agent that runs in your terminal (the command-line interface on your computer). When you open it inside a project folder, it can see every file, understand the relationships between them, run commands, make edits, and even deploy — all from natural language instructions.
Key Distinction
Think of ChatGPT as a consultant who reads what you give them and writes a report. Claude Code is more like a contractor who walks into your office, looks at everything, and starts building.
Getting Started in 5 Minutes
Four steps to go from zero to running:
Install
One command — or your dev team can install it for you.
Navigate to your project
Launch
That's it — one word.
Give it a task
Heads Up
You need Node.js installed and an Anthropic API key. If those words mean nothing, your developer can set this up in 10 minutes. You only do it once.
Your First 5 Commands to Try
Copy these into Claude Code and see what happens:
Claude Code reads every file and gives you a plain-English summary.
It searches through files and gives you a sitemap.
It finds the file, edits it, done.
Writes the code, shows you the diff.
Handles git, deployment, everything.
What You Just Learned
- You now know what Claude Code is and how it differs from chat-based AI
- You understand the core workflow: navigate to project, launch claude, give instructions
- You've seen 5 real examples of what you can ask it to do
- You know that it works WITH your files, not just talks ABOUT them
Next: Learn how Claude Code sees your project — and why that changes everything.