Follow these steps to get Claude Code running on your PC. Once you're in, a guided onboarding conversation handles everything else — naming your assistant, setting up your team, and building your knowledge base. No manual file editing required.
Claude Code is the command-line tool that powers this entire system. It requires an active Claude Pro subscription ($20/mo) or an Anthropic API key.
Go to claude.ai, create an account, and upgrade to Pro. This is the simplest path — no API keys, no billing dashboards.
Go to console.anthropic.com, create an account, and generate an API key. You'll be billed per use. Better if you're already building with the API.
Node.js is a JavaScript runtime — you don't need to know anything about it. It's just the vehicle Claude Code rides in on.
Open PowerShell and run:
winget install OpenJS.NodeJS.LTS
Go to nodejs.org, download the LTS (Long Term Support) version, and run the installer. Click through the defaults.
Close and reopen PowerShell, then run:
node -v
You should see a version number like v22.x.x. If you see "command not recognized", close and reopen your terminal and try again.
This installs the claude command globally on your PC.
Windows blocks npm scripts by default. Run this once in PowerShell before anything else — it prevents the most common error people hit during this step:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
npm install -g @anthropic-ai/claude-code
CLAUDE_CODE_GIT_BASH_PATH=C:\Program Files\Git\bin\bash.exe
claude
Claude Code will walk you through a short first-time setup. Here's exactly what to select:
Once setup is complete, type /exit or press Ctrl+C to close Claude Code. You'll launch it properly from your Assistant folder in Step 7.
Every file in your system lives inside this one folder. Claude Code launches inside it, reads it, and writes to it.
Open File Explorer, navigate to your Desktop, right-click in an empty area, and select New → Folder. Name it Assistant.
The starter kit contains the config files, onboarding instructions, and your two default support team members. The onboarding process names them, builds your lead persona, and writes everything else — you don't need to manually create any files.
Click the button below to download the starter kit zip file.
Right-click the downloaded starter-kit.zip and select Extract All.... Set the destination to your Assistant folder on the Desktop and click Extract. No terminal command needed.
When done, your folder should contain:
git clone https://github.com/chandlercatron/digital-personal-assistant.git "YOUR_DESKTOP_PATH\Assistant" instead.
Navigate into your folder and launch Claude Code. This command automatically finds your Desktop whether or not you use OneDrive:
cd "YOUR_DESKTOP_PATH\Assistant"; claude
explorer . to open File Explorer in your current terminal location and verify the files are there.
The system will detect the onboarding file and start walking you through setup automatically. The onboarding will:
/rename and /resume)claude, then type /resume and select "Initial Onboarding" to pick up exactly where you left off.
Claude Code reads the folder it's launched from. If you open it from somewhere else, it won't load your system. The onboarding will walk you through setting up a PowerShell shortcut — after that, you'll launch by typing your assistant's name in any PowerShell window.