Setup
Outcome: You have a fully configured environment, ready to work
Tools to Install
We're going to get you set up with everything you need. Follow along with the video—pause as needed.
1. VS Code
What it is: VS Code is an IDE (Integrated Development Environment). Think of it as the "Chrome of code editors"—it's where developers live, and now it's where you'll work with AI.
Download: code.visualstudio.com/download
Important: After downloading, drag VS Code into your Applications folder (Mac) before opening it.
2. Claude Account + Pro Subscription
What it is: Claude is the AI we'll be using. You need a paid Pro account to access Claude Code.
Steps:
- Go to claude.ai
- Create an account
- Subscribe to Claude Pro ($20/month)
3. Claude Code Extension
What it is: This is the agent platform that connects Claude to your files and workspace. It's NOT the same as using Claude in your browser (more on that in 1.3).
Steps:
- Open VS Code
- Click the Extensions icon (left sidebar, looks like 4 squares)
- Search "Claude Code"
- Click Install
- Authenticate with your Claude account when prompted
4. Wispr Flow
What it is: Voice dictation that lets you talk to Claude instead of typing. Much faster than typing once you get used to it.
Download: wispr.com (or search "Wispr Flow")
After installing:
- Complete the personalization workflow
- Learn the shortcut: FN + Space to activate
5. GitHub Account + GitHub Desktop
What it is: GitHub is where your files live. GitHub Desktop makes syncing easy.
Steps:
- Create account at github.com
- Download GitHub Desktop from desktop.github.com
- Move GitHub Desktop to Applications folder
- Sign in with your GitHub account
Workspace Setup
1. Create Your Personal Repo
- In GitHub Desktop, click "Create New Repository"
- Name it something like "YourName-Repo"
- Choose your Documents folder as the location
- Click Create
2. Add to VS Code Workspace
- In VS Code, right-click in the Explorer sidebar
- Click "Add Folder to Workspace"
- Navigate to your repo folder
- Click Add
3. Mark Sharp Extension
What it is: Makes Markdown files readable. You'll understand why this matters in the next section.
Steps:
- In VS Code, go to Extensions
- Search "Mark Sharp"
- Click Install
4. Enable Bypass Permissions Mode
This lets Claude work without asking permission for every little action. (We'll explain all the modes in 1.3.)
- Open VS Code Settings: Cmd + , (Mac) or Ctrl + , (Windows)
- Search for "Claude permissions"
- Enable "Allow bypass permissions mode"
- Restart VS Code
5. Change Model to Opus 4.5
Claude Code can use different models. Opus 4.5 is the most capable—better reasoning, better writing, better at complex tasks. We want to make sure you're using it.
Steps:
- Open Claude Code panel in VS Code
- In the chat section type:
/model - Click on it to open model selection
- Select "Claude Opus 4.5"
- Open a new Claude agent and check if it stuck.
6. Connect OpenTelemetry (Usage Tracking)
This lets you see how much you're using Claude Code—which sessions used the most tokens, what patterns emerge, etc. Your usage data gets sent to a dashboard where you can review it.
Steps:
- LeanScale-Context
- Claude-Telemetry
- Run it in the terminal
You're set up. Let's put it to work.