Claude Code: No Code Required
A Step-by-Step Guide for Non-Technical Professionals
What Is Claude Code and How Does It Work?
Claude Code is an AI assistant built by Anthropic that lives inside your code editor and writes software on your behalf. You describe what you want in plain English - a website, a tracker, a template - and Claude Code writes the files, creates the folder structure, and does the technical work for you.
Think of it as hiring a very fast, very literal assistant who never sleeps, never charges by the hour, and never judges you for not knowing what a "repository" is.
Claude Code runs inside Visual Studio Code (VS Code) - a free program used by developers worldwide. You install it like any other app, add the Claude Code extension, and you're ready to build.
You do not need to:
- Open a terminal
- Learn Git or GitHub
- Write a single line of code
- Understand how any of it works under the hood
What Do You Need Before You Start?
You need three things to get Claude Code running:
- A Claude Pro account - Sign up at claude.ai for $20/month. The free plan does not support Claude Code.
- Visual Studio Code - Download it free at code.visualstudio.com. It works on Mac, Windows, and Linux.
- The Claude Code extension - Install it directly inside VS Code by searching "Claude Code" in the Extensions panel (the four-squares icon in the left sidebar). Install the one with the orange logo.
That's it. No developer tools, no command line, no account on GitHub.
How Do You Set Up Claude Code for the First Time?
Setup takes about 10 minutes. Here's the exact sequence:
Step 1: Log in to Claude inside VS Code
Click the Claude icon in your VS Code sidebar after installing the extension. Type /login in the chat box. A browser window opens. Click "Authorize." Your account is now connected.
Step 2: Create your project folder
Create a new folder on your desktop - name it anything, like "My First Project." In VS Code, go to File → Open Folder and select it. This is where Claude will save everything it builds.
Step 3: Fix the permissions problem
Out of the box, Claude asks for permission before every action. It gets old quickly. Paste this once into the chat box to fix it:
"Add permissions to this Claude Code project to allow non-destructive bash commands, file reads, and web searches without asking for confirmation each time."
Claude updates its own settings. It stops asking for permission on safe actions and starts working immediately.
What Is the Difference Between Plan Mode and Edit Mode?
| Mode | What It Does | When to Use It |
|---|---|---|
| Plan Mode | Claude thinks out loud - explains what it would build and why. Your files stay untouched. | When you're figuring out what you want |
| Edit Mode | Claude actually builds - writes files, creates folders, makes real changes. | When you're ready to execute |
Switch between them using the toggle at the top of the Claude sidebar in VS Code.
Which Claude Model Should You Use?
Claude Code gives you access to three AI models. Each costs a different amount per task, measured in tokens - the computational units Claude uses to read and write text.
Claude Haiku - The fast, cheap one
Best for: quick questions, simple edits, early exploration. Cost: approximately $0.001 per 1,000 words.
Claude Sonnet - The reliable everyday model
Best for: building features, writing and editing code, most real project work. Cost: approximately $0.003 per 1,000 words.
Claude Opus - The powerful, expensive one
Best for: complex problems that Sonnet cannot solve after two attempts. Cost: approximately $0.015 per 1,000 words - roughly 5× Sonnet.
Recommended rule of thumb:
- Use Haiku in Plan Mode (you're just thinking, not building)
- Use Sonnet for 90% of your actual work in Edit Mode
- Switch to Opus only when Sonnet gets stuck on a genuinely hard problem
Most beginners default to Opus for everything. That's like taking a taxi to buy groceries - it works, but your credit budget disappears fast.
How Do You Build Your First Project with Claude Code?
Open the Claude chat panel inside VS Code and type what you want in plain English. No special syntax. No formatting required.
Example prompts that work:
- "Create a one-page website for my consulting services."
- "Build me a simple weekly expense tracker."
- "Make a schedule template I can fill in and reuse."
Claude thinks for a few seconds, then starts building. You'll see files appear in your project folder in real time. Make sure you're in Edit Mode - not Plan Mode - before you run your first build prompt.
How Do You Make Claude Remember Your Preferences?
Claude has no memory between sessions. Every new chat starts from zero.
The fix is a CLAUDE.md file - a plain text file Claude reads at the start of every session. It contains your standing rules and preferences, so Claude already knows your style before you say a word.
Ask Claude to create it once:
"Create a CLAUDE.md file and add these preferences: always use simple language, keep designs clean and minimal, default to black and white color schemes."
You can update it any time by asking Claude to add new preferences. This is the single most useful setup step for non-technical users.
What Are Claude Code Skills and How Do You Use Them?
Skills are reusable custom commands you teach Claude once and run anytime afterward.
For example, you can create a /summarize command that takes messy bullet points and formats them into a clean executive summary. You set it up once. After that, you type /summarize and the whole workflow runs automatically.
To create a skill, tell Claude:
"Create a skill called /summarize that takes raw bullet points and formats them into a professional executive summary."
Claude saves the skill in your project folder. It's available every session from that point forward. You can create skills for any repeated task - formatting reports, writing email templates, restructuring data.
Your Setup Checklist Before You Start Building
- Claude Pro account active at claude.ai ($20/month)
- Visual Studio Code downloaded from code.visualstudio.com (free)
- Claude Code extension installed via the VS Code Extensions panel
- Logged in using
/loginin the Claude chat panel - Project folder created on your desktop and opened in VS Code
- Permissions message sent once to remove confirmation prompts
- CLAUDE.md file created with your style preferences
- Model set to Sonnet for everyday work (switch to Opus only when stuck)
Frequently Asked Questions About Claude Code for Non-Developers
Do I need to know how to code to use Claude Code?
No. Claude Code handles all code writing on your behalf. You communicate in plain English and Claude translates your instructions into working software.
Is Claude Code free?
Claude Code requires a paid Claude Pro account ($20/month at claude.ai). The extension itself is free. Usage also consumes tokens billed based on the model and volume of work.
What is a token in Claude Code?
A token is a unit of text Claude processes when reading or writing. Every word Claude reads or writes costs tokens. Longer conversations and more complex tasks cost more. This is why choosing the right model for the right task matters.
Can Claude Code publish my website live?
Not automatically - but it's possible with an additional free tool called Vercel. A guide covering that step-by-step workflow is coming in a future article.
What is GitHub and do I need it?
GitHub is an online platform where developers save and version-control their code - similar to Google Drive, but for software projects. You do not need it to start using Claude Code.