Day 0 — Prerequisites
This chapter installs every tool you’ll use for the rest of the guide. Run the commands in order. Each one is safe to re-run if interrupted.
You’ll be working in Terminal. Open it from Spotlight (⌘ Space → “Terminal”).
1. Homebrew
Homebrew is the package manager you’ll use to install most of the other tools.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" The installer pauses to explain what it will do. Press Return to continue. It will ask for your Mac password — that’s expected.
Verify:
brew --version You should see something like Homebrew 4.x.x.
2. Node.js
Node powers the website’s build process.
brew install node Verify:
node --version You should see something like v24.x.x or higher. Astro (the framework you’ll use) recommends even-numbered Node versions; if you happen to land on an odd-numbered one (e.g. v25), builds still work but you may see a warning.
3. git
git ships with Apple’s developer tools. The first time you try to use it, macOS will offer to install them. Trigger that prompt now:
git --version If a dialog appears asking to install developer tools, click Install and wait. Re-run the command above to confirm it now reports a version.
4. GitHub CLI
The GitHub CLI (gh) lets you create repositories and pull requests from the terminal without leaving Claude Code.
brew install gh Sign in to your GitHub account:
gh auth login Choose: GitHub.com → HTTPS → Login with a web browser. A code appears in the terminal; copy it, press Return, paste the code into the browser tab that opens, and approve.
Verify:
gh auth status You should see Logged in to github.com account <your-username>.
5. Claude Code
Claude Code is the AI assistant you’ll work with. Install it as a Mac app via Homebrew:
brew install --cask claude-code Verify:
claude --version Run Claude Code’s self-check:
claude doctor The first time you launch Claude Code, run claude from a terminal in any folder and follow the browser sign-in prompts. You need a Pro, Max, Team, or Enterprise account.
6. Superpowers plugin
Superpowers is a Claude Code plugin that adds disciplined workflow skills (brainstorming, planning, debugging). Install it from inside Claude Code itself.
Open Claude Code:
claude In the Claude Code prompt, type:
/plugin install superpowers@claude-plugins-official Wait for confirmation that the plugin installed. You can quit Claude Code with Ctrl+C (or type /exit) once it’s done.
7. Nexus-Council MCP
Nexus-Council gives Claude Code access to a library of expert personas (Brand Strategist, Conversion Copywriter, etc.) you’ll use later for design and copy review.
Setup is a four-step handoff from Thomas:
- Thomas issues you an API key and shares it via 1Password.
- Thomas sends you the bridge file
mcp-nexus-council-bridge.mjs. Save it to~/bin/mcp-nexus-council-bridge.mjs(create the folder if needed):
mkdir -p ~/bin - Install the API key into your Mac keychain. Replace
megwith whatever identity Thomas tells you, and paste the actual key inside the single quotes:
security add-generic-password -s mcp-nexus-council -a meg -w 'PASTE_KEY_HERE' - Tell Claude Code about the MCP server. Open
~/.claude.jsonin any editor and add (or merge into) anmcpServersblock:
{
"mcpServers": {
"nexus-council": {
"command": "node",
"args": ["/Users/YOUR_USERNAME/bin/mcp-nexus-council-bridge.mjs"],
"env": {
"PERSONAS_WORKER_URL": "https://mcp-nexus-council.tiny-term-27a1.workers.dev/mcp",
"PERSONAS_IDENTITY": "meg"
}
}
}
} Replace YOUR_USERNAME with your Mac username (run whoami to see it). Replace meg with the identity Thomas gave you.
Quit and restart Claude Code. To verify the server is wired in, run Claude Code and ask it: “List the available Nexus-Council personas.” If it returns a list (Brand Strategist, Conversion Copywriter, and so on), you’re done.
When everything above is checked, move on to chapter 01.