I’ve used Claude Code almost every day for five months. I built this website with it, prototyped a retirement planner, and wired together a voice-activated expense tracker. I do not have a CS degree. Here is how to start.

What Claude Code is

Claude Code lives in your terminal. Unlike the Claude website, it can see files, edit them, create new ones, and run commands in your project folder.

You do not need to know how to code. You do need to be comfortable typing commands and reading what comes back.

What you need

  • A computer (Mac, Windows, or Linux)
  • An internet connection
  • A project folder (any folder with files you’re working on)
  • An Anthropic account at claude.ai

You don’t need GitHub, programming languages, or previous AI experience.

Three ways to pay

API Key (pay per use): Load credit and pay for what you use. Start with $10-20 to test.

Claude Pro ($20/month): Subscription usage. Best for light, predictable work.

Claude Max ($100 or $200/month): Higher volume. Best for daily use. I use the $100 tier.

Installation in 4 steps

  1. Install Node.js from nodejs.org (download the LTS version, run the installer)
  2. Open your terminal (Mac: Cmd+Space, type “Terminal”. Windows: search “PowerShell”)
  3. Run: npm install -g @anthropic-ai/claude-code
  4. Navigate to your project folder with cd, then type claude

Claude is now running and can see the files in that folder.

Your first interaction

Try asking:

What files are in this project? Give me a summary of what you see.

Claude will scan your folder and summarize what it sees. The response is specific to your files.

Try creating something:

Create a file called test-note.md with a summary of this project based on what you can see.

Claude asks permission before creating or editing files. You approve with y.

The 8-layer system

This is the part most people skip. Start simple, then add layers when you feel friction.

LayerWhat it isComplexity
FoundationClaude Code installedBeginner
1. CLAUDE.mdA rules file Claude reads every sessionBeginner
2. CLAUDE.local.mdPrivate notes Claude can referenceBeginner
3. Slash commandsReusable workflows you trigger with /Intermediate
4. HooksAutomated triggers on specific eventsIntermediate
5. Memory systemPersistent context across sessionsIntermediate
6. MCP + searchSemantic search over your filesIntermediate
7. SkillsAdvanced reusable behaviorsIntermediate
8. Permissions + settingsFine-tuning autonomy and accessAdvanced

Start with the Foundation and Layer 1. Add the rest when you feel friction, not on a schedule.

Layer 1: The CLAUDE.md file

This is the best first upgrade. CLAUDE.md sits at the root of your project. Claude reads it at the start of each session. It contains your rules.

Ask Claude to create one for you:

Look at my project folder and create a CLAUDE.md with:
1. A folder map showing where different files should go
2. File naming conventions based on what you see
3. Any patterns you notice
4. 5-10 rules for how you should work in this project

Start with 10-15 lines. Add rules when Claude does something you do not want.

What I’ve built with it

  • This website. I made the design and content decisions. Claude handled Astro, CSS, and deployment config.
  • A retirement planner prototype. I defined the requirements. Claude wrote the calculation logic.
  • A voice-activated expense tracker. Telegram, ChatGPT, Make.com, and Google Sheets, so I could log expenses by voice.
  • A career scanner and resume system. It monitors company career pages, scores leads, tailors resumes, and generates application materials.

I did not write these from scratch. I described the system, reviewed the output, and iterated until it worked.

Honest limitations

  • Claude sometimes gets things wrong. You need to review its output, especially for anything involving numbers or logic.
  • Large projects can hit context limits. When that happens, Claude can compact the conversation and keep going, but you still want important project rules written down in files.
  • It is not free. Heavy API use can cost $20-50/month. Max gives predictable costs.
  • You still need to know what you want. Claude is great at implementation, but you have to bring the vision and the judgment.

Where to go deeper

I put together a starter kit with slides, a cheat sheet, and a walkthrough. If you want a copy, reach out.