Mentorship · Cohort 2 · Setup v2

Get your AI agent running.

One command. Under 10 minutes of install + 5 minutes of verification. No npm errors, no hidden PATH issues, no Googling which runtime to install. Built for students, not engineers.

Block 60 minutes total if you've never used Terminal before. After today, starting your agent takes 30 seconds.

Choose your computer

1

Get Claude Pro or Max

This is the AI we build with. You need a paid plan — the free tier won't cut it for agents.

Go to claude.ai/upgrade and grab Pro ($20/month) or Max ($100/month). Pro is enough to start. You can upgrade later if you build a lot.

Already have a subscription? Skip to Step 2.
2

Open Terminal

Press Cmd + Space, type Terminal, press Enter.

A window with a text prompt opens. That prompt ends with a % symbol. That's where you type commands.

One thing before you start: in any tutorial, if you see a $ at the start of a command, don't type it. The $ is just a symbol meaning "this is a terminal command." You only type what comes after.
3

Run the setup command

Copy this entire line. Paste it into Terminal. Press Enter.

curl -fsSL https://setup.coachreemteam.com/setup.sh | bash

The script narrates itself as it runs through 7 phases:

  • Pre-flight checks (OS, internet, existing installs)
  • Install bun — the JavaScript runtime the Discord plugin needs
  • Symlink bun into system PATH — the critical fix most installers skip
  • Install Claude Code (native installer, not npm)
  • Create your ~/cohort2-workspace/ folder with a starter CLAUDE.md
  • Install reemteam-check, a diagnostic you can run anytime
  • Verify every layer actually works before declaring success

Expect 3-5 minutes. If any check fails at the end, the script tells you exactly how to fix it.

If you see a password prompt: that's macOS asking for your admin password (needed once, for the bun symlink). Type your Mac login password and press Enter. You won't see the characters as you type — that's normal.
4

Close and reopen Terminal

This is the step people skip. Don't skip it.

Press Cmd + Q to fully quit Terminal. Not the red X — a real quit.

Then reopen Terminal (Cmd + Space → Terminal → Enter).

Why: Terminal needs to reload so it knows where the newly installed commands live. Skipping this causes "command not found" errors.
5

Launch Claude Code in your workspace

Your setup script already created ~/cohort2-workspace/ with a starter CLAUDE.md. Go there and launch:

cd ~/cohort2-workspace && claude

A sign-in page opens in your browser. Sign in with your Claude Pro/Max email.

After sign-in, Terminal shows "Welcome back, [your name]." The > prompt is where you talk to your agent.

Why the workspace folder matters: Claude Code loads the CLAUDE.md in whatever folder you launch from. That file defines your agent's persona. Launching from your home folder instead means no persona loaded.
6

Connect Discord (optional for Day 1)

Your agent already works in Terminal — that's the real product. Discord is a skin that lets you talk to it from anywhere. If you want that skin, follow the full Discord walkthrough:

setup.coachreemteam.com/mentorship/onboarding#discord

Critical for Discord users: after wiring up the bot, you MUST run /loop in Claude Code with a polling directive. Without this, your bot shows online but replies go silent forever. This single missing step cost 60 minutes of debugging in our beta test.
If you're not doing Discord today, skip to Step 7. Discord is a Week 2 topic if you want to learn it live.
7

Run verification

Two layers of verification — one automatic, one manual.

Automatic: In Terminal, run:

reemteam-check

You'll see a pass/fail report for each layer of the stack. All green = you're solid.

Manual: Fill out the verification form so Code can confirm you're cleared for Day 1:

Submit Verification →

1

Get Claude Pro or Max

Go to claude.ai/upgrade. Grab Pro ($20/month) or Max ($100/month). Pro is enough to start.

2

Open PowerShell (as Administrator)

Click the Windows Start menu. Type PowerShell.

Right-click Windows PowerShell in the results. Click Run as administrator. Click Yes when prompted.

A blue window opens. That's PowerShell.

Must be Administrator. Regular PowerShell can't install system-wide. If the title bar doesn't say "Administrator," close it and reopen as admin.
3

Allow scripts to run (one-time)

Copy this, paste into PowerShell, press Enter:

Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser

When it asks "Do you want to change the execution policy?" — type Y and press Enter.

Windows blocks external scripts by default. This command allows signed scripts to run. Only needs to happen once.
4

Run the setup command

Copy this entire line. Paste it into PowerShell. Press Enter.

iwr -useb https://setup.coachreemteam.com/setup.ps1 | iex

The script narrates itself through 7 phases: pre-flight → bun install → PATH setup → Claude Code install → workspace creation → health check install → verification.

Expect 4-6 minutes. If any check fails at the end, the script tells you exactly how to fix it.

If Windows Defender pops up: click More info, then Run anyway. The script pulls from official Anthropic and Bun sources only.
5

Close and reopen PowerShell

Close the PowerShell window entirely. Reopen it (doesn't need to be admin this time).

Why: PowerShell caches the PATH when it starts. Reopening picks up the new installs.
6

Launch Claude Code in your workspace

Your setup script already created cohort2-workspace with a starter CLAUDE.md. Go there and launch:

cd $env:USERPROFILE\cohort2-workspace; claude

A browser tab opens for sign-in. Use the same email as your Claude Pro/Max account.

Why the workspace folder matters: Claude Code loads CLAUDE.md from the folder you launch in. That file defines your agent's persona.
7

Connect Discord (optional for Day 1)

Your agent works in Terminal already — Discord is just a skin for it. If you want the skin, follow the walkthrough:

setup.coachreemteam.com/mentorship/onboarding#discord

Critical for Discord users: after wiring up the bot, you MUST run /loop in Claude Code with a polling directive. Without it, your bot shows online but replies silently drop.
8

Run verification

Automatic check in PowerShell:

reemteam-check

Then submit the verification form:

Submit Verification →

Stuck at any step?

Post a screenshot of the error in the Cohort 2 Telegram. Code monitors live — reply within 30 min during the day. Don't wait until Day 1.

Join the Cohort 2 Telegram →

Chromebook / Linux

If you're on Chromebook or Linux, the standard bootstrap needs a small tweak. Post a message in the Cohort 2 Telegram group saying "I'm on Chromebook" or "I'm on Linux" and Code will give you a custom install path.

Telegram group: Join here

Most Chromebooks can run a Linux environment (Crostini). If yours can, the Linux instructions will work.

Hit a snag?

Setup usually runs clean. When it doesn't, we've seen every common failure and written the fix.