Prework

Set up your workspace.

About 15 minutes, and it is mostly opening a folder. Do it the night before Day 1, while there is still time to ask if something breaks. We use the live session for the work, not for installs.


Do this today, not the night before

Check that your Claude account can run Claude Code

This is the only step that cannot be fixed at the last minute. Everything else is just opening folders.

Claude Code needs CLAUDE-PLAN. Open the desktop app, sign in, and confirm Claude Code opens. If it asks you to upgrade, do it now. If you get stuck here, that is the first thing to bring to support, today.

  1. Get Claude Code

    No-terminal path (recommended for most): install the Claude desktop app for Mac or Windows from DESKTOP-LINK, and sign in with the account you just checked.

    Builder path (if you like the terminal): follow Anthropic's current setup page at code.claude.com/docs/en/getting-started.

    # Mac, Linux, or WSL
    curl -fsSL https://claude.ai/install.sh | bash
    
    # Windows
    winget install Anthropic.ClaudeCode
    
    # confirm it worked
    claude --version
    Windows note. This is the one step that occasionally snags. If you run Claude Code natively on Windows (not WSL), install Git for Windows too, so Claude Code gets a Bash tool. It is a two-minute fix tonight and a panic at 8:59am. WSL users can skip it.
  2. Get the workspace onto your machine

    This folder is your workspace. Everything lives inside it, including your skills. Nothing gets installed onto the rest of your computer, and you can delete the folder anytime to start over.

    Already use git? Clone it instead: REPO-LINK. Either way, unzip or clone it somewhere you will find again, like Documents/claude-code-mastery.

  3. Open it and make it yours

    In Claude Code, open that folder. Then run one command:

    /vault-setup

    It asks you a few short questions and fills in your workspace for you: your Script (the CLAUDE.md Claude reads first), your first client file, and today's note. That is it. You have a working workspace. On Day 1 we build on top of it.

  4. See your files outside Claude Code Recommended

    You want one window that shows the same markdown Claude is writing. You can use the Claude desktop app's own file view, so this is optional. Obsidian is just a nicer window onto the exact same files.

    If you want Obsidian: install it from OBSIDIAN-LINK, choose Open folder as vault, and point it at your workspace folder. Whatever you pick, you only need to be able to open one markdown file from your workspace and see it.

  5. Add the research tools Optional

    Firecrawl and Exa are MCPs: tools Claude loads only when it needs them, so they cost nothing until you use them. They need Node (from nodejs.org) and a free key from each service. This is the one step that touches the terminal, so it is fine to wait and do it together live.

    claude mcp add exa -s user --env EXA_API_KEY=<your-key> -- npx -y exa-mcp-server
    claude mcp add firecrawl -s user --env FIRECRAWL_API_KEY=<your-key> -- npx -y firecrawl-mcp

    Keys at exa.ai and firecrawl.dev.


Prove it works

You are ready when Claude can read your workspace.

Not when it opens. When it can see your files and write one back. Run this in Claude Code from your workspace folder:

Read the files in this workspace and tell me what you can see.
Then create a file called ready-check.md with today's date, and tell me where you saved it.

You are ready when Claude names real files from the workspace (not invented ones), the new file exists, and you can open it outside Claude Code. If Claude cannot see your files, you opened it from the wrong folder. Reopen Claude Code from the workspace folder and run it again.


If something breaks

Most snags are one of these.

SymptomFirst fix
Claude Code will not openRestart the terminal or app, confirm the install, and capture the exact error to bring to support.
Command not foundConfirm the install finished, then restart the terminal so it picks up the new command.
Claude cannot see the workspaceOpen Claude Code from the actual workspace folder, then run the read prompt again.
The file shows in one app but not anotherBoth apps have to point at the same folder path. Confirm the path matches.
Windows: Bash or Git errorsInstall Git for Windows, then restart the terminal.
No real task to bringPick the smallest annoying task from this week. It does not have to be big.
Still stuck after one real try? Post in SUPPORT with what you tried, what happened, what you expected, and a screenshot of the error. You will get one next action back, fast, before Day 1.
← Back to home base