You've probably used apps in three different ways. Let's map Claude to those experiences to build a clear mental model.
Click each panel to explore the analogy and see how it relates to Claude.
Tap & Swipe Interface
Click & Type Interface
Connect & Automate
You interact through buttons and screens, and the result appears instantly. The Claude equivalent is the claude.ai website: a visual, chat-based interface where your browser sends a message and gets a response. It's great for conversations and summarizing pasted text.
This is software installed ON your computer that works with files ON your computer (like Microsoft Excel). While there's no direct Claude equivalent, this is the feeling of Claude Code. You type commands, and it makes changes to your local files.
This is when one tool sends a request to an external service for data. A weather widget on your blog is a perfect example. This is what Claude Code is! Your terminal sends a request to Claude's AI brain on Anthropic's servers, gets a response (the code), and then uses that response to change your local files.
Drag each item to the category that best describes its interaction style.
Tap & Swipe
Click & Type
Connect & Automate
Q1: Claude Code is best described as what?
Perfect for small teams: Claude Code runs locally on your computer and connects securely to the Claude API. Whether you're a solo consultant or a 5-person team with a $20/month budget, you get the same powerful capabilities as enterprise teams.
💰 Budget-Friendly: No enterprise licensing required. You pay only for what you use through token-based pricing. A typical small team might spend $10-30/month on actual AI usage, making it accessible even for bootstrapped consultancies.
No hidden costs: Editing sessions inside your IDE are not billed per token directly. You only pay for the AI processing when you actually use it.
🚀 Same Power, Any Team Size: Whether you're a solo financial consultant or part of a 50-person firm, you get access to the same Claude AI capabilities. The difference is only in how you manage access and billing, not in the features available to you.
CLAUDE.md to minimize repeated instructionsToday you can ask Claude to edit files with free‑form requests or explicit verbs. Both styles are supported and may converge over time:
claude "edit this file: add a button to index.html"claude edit index.html "add a button"| Command | What It Does | Example |
|---|
Before: <h1>Hello</h1>
After: <h1>Hello</h1> + new button added
⏱️ Time needed: 10-15 minutes | 📚 Experience required: None — we'll guide you through every click!
What is a Terminal? Think of it as a text-based way to talk to your computer. Instead of clicking icons, you type commands. Don't worry — we'll tell you exactly what to type!
✅ You'll know it worked when: You see a window with text and a blinking cursor waiting for you to type.
What is Node.js? It's free software that helps run modern programs like Claude Code. Think of it as the engine that makes Claude Code work. You need this first.
📝 Copy this command to check if you already have it:
node --version
Paste it in your Terminal/PowerShell and press Enter.
✅ If you see something like: v18.17.0 or a similar number — Great! You have Node.js. Skip to Step 3 below.
⚠️ If you see: command not found — You need to install Node.js first. Follow these steps:
📦 Installing Node.js (One-Time Setup)
node --version again — you should now see a version number like v22.20.0What you're doing: Now that Node.js is installed, you can download and install Claude Code, just like installing Microsoft Word or Excel.
📝 Copy this command exactly as written:
npm install -g @anthropic-ai/claude-code
Now do this:
📖 What You'll See:
✅ Success message: changed 2 packages in 18s or added 2 packages — The installation worked!
✅ Funding message: 1 package is looking for funding — Ignore this completely. It's just asking for donations.
✅ Security message: found 0 vulnerabilities — Nice! The software is safe.
💡 Key point: As long as you see "changed 2 packages" and your cursor is blinking with no red "ERROR" text, you're done!
✅ Success looks like: You see "added 2 packages" and your cursor is blinking again with no red "ERROR" text.
Why? Your computer needs to "refresh" to recognize the new program you just installed. Think of it like restarting after a software update.
How to do it:
What you're doing: Connecting your computer to your Claude account, like logging into Gmail or Netflix.
📝 Copy this command:
claude auth login
Then:
⚠️ Screen 1: Security Confirmation (Don't Panic!)
You'll see a message asking "Do you trust the files in this folder?" This is a normal security check.
✅ What to do: Press Enter to select "1. Yes, proceed"
🌐 Screen 2: Browser Login (First-Time Users)
Your web browser will open automatically. Sign in with your Anthropic/Claude account (or create one if you don't have it). After login, close the browser tab and return to Terminal.
💡 Tip: If you use claude.ai, it's the same account!
🎉 Screen 3: Welcome to Claude Code!
You'll see a welcome message with your name and a blinking cursor > █ — Claude is ready for your instructions!
💬 Try your first command: Type something like tell me a joke about spreadsheets or what folder am I in? and press Enter. Claude will respond!
✅ To exit: Type exit and press Enter, or close the Terminal window.
Let's make sure everything is set up correctly!
📝 Copy this command:
claude --version
What you should see: claude-code version 1.2.3 (numbers may vary)
🎉 Congratulations! You're Ready! If you saw the version number, Claude Code is successfully installed and authenticated.
❌ Didn't work? If you see "command not found", go back to Step 4 and make sure you closed and reopened your Terminal.
You opened the Terminal (maybe for the first time!), ran commands, and installed professional AI software. That's not "tech stuff" — that's real capability. You're now equipped to use AI tools that most consultants only dream about.
You just completed the installation! Before moving forward, let's make sure you understood the key concepts. This will help you feel confident using Claude Code.
The website (claude.ai) is for chatting. The terminal tool (Claude Code) is for working with your files. They are separate and use different interfaces.
Claude Code runs locally and connects securely to the Claude API for intelligence. Your files remain on your machine; you review all diffs and approve before anything is written.
Store your API key in a password manager. Do not share it, and never save it in a public place like a GitHub repository.
You understand the mental model of how Claude Code works as an API tool and you have a step-by-step plan for installation.
In Module 3, you'll use your newly installed Claude Code to make your first real change to a file and learn the critical "review and approve" workflow.
💡 For VS Code Beginners: If you just installed VS Code, look for the Claude icon (👤) in the left sidebar to open the chat panel. Module 3 will walk you through every step!
Continue to Module 3: Your First Real Change