WHO THIS IS FOR
When the browser isn't enough
Claude Projects gets you 80% of the way. The Builder Path is for the other 20% — versioning your CoS, working across many files, deploying Skills to a team, or scripting routines that run on a schedule.
- Your CoS is a single Project knowledge upload
- You don't need version history of drafts
- You're solo, not sharing with a team
- You haven't yet shipped Project 2.1 v1
- You want to revert a bad CoS edit
- You're sharing Skills with your team
- Your CoS spans 5+ files of context
- You want routines that run while you sleep
SETUP · ABOUT 20 MINUTES
Five steps to a terminal-native CoS
Do these once. They unlock everything else on this page. If anything breaks, drop it in the cohort chat with #builder-help.
Sign up for GitHub
Go to github.com and create an account with a username you're happy to share professionally. Verify your email. That's it — no repos to create yet.
github.com → Sign up → verify emailInstall Claude Code
Single installer. Works on macOS, Windows, and Linux. After install, the claude command is available in any terminal.
curl -fsSL claude.ai/install.sh | sh
# or download from claude.com/codeOpen Terminal · type claude
macOS: Cmd-Space → "Terminal". Windows: search "Terminal" or "PowerShell". Type claude and hit enter. First-time setup will ask you to sign in once.
$ claude
Welcome to Claude Code. Sign in at... (browser opens)Move your CoS files into a folder · run /init
Make a folder for your CoS. Put your working-style.md, cos-instructions.md, and any reference files inside. Open it in Claude Code. Type /init — it scaffolds a CLAUDE.md for you. Edit before committing.
$ mkdir ~/my-cos && cd ~/my-cos
$ mv ~/Downloads/working-style.md .
$ claude
> /initCommit to Git · your CoS is now versioned
Inside the folder: git init · stage your files · commit. Every future edit gets a history entry. Bad draft? Revert in one command.
$ git init
$ git add CLAUDE.md working-style.md
$ git commit -m "CoS v1 · initial"
# push to GitHub when ready:
$ git remote add origin https://github.com/<you>/my-cos
$ git push -u origin mainANATOMY OF CLAUDE.md
The most important file you'll ever write
CLAUDE.md tells Claude how to behave in this folder. Personal preferences · context · what to do without asking. Claude reads it on every session.
I'm a Senior HRBP at Apexon.
I report to the CHRO.
# How I want to work
- Bullets, not paragraphs
- Exec-summary up top
- Be direct, no sycophancy
# My context
- 12-person People team
- M365 stack
- Workday HRIS
# What you can do
# without asking
- Read any file in this folder
- Run /skill claude-code commands
- Edit drafts/
# What needs my OK
- Sending anything
- Changing CLAUDE.md
- Touching pii/
/permissions.
SLASH COMMANDS
The ten you'll actually use
Claude Code has 30+ slash commands. Here are the ten HR leaders reach for daily. Type /help any time to see all.
KEYBOARD SHORTCUTS
Five that save you minutes per session
Daily-driver shortcuts. Memorize three. The rest live in muscle memory after a week.
!ls, !git status, etc.@working-style.md.HR WORKFLOWS · COMMON USES
What this unlocks for you
Three real workflows people leaders run in Claude Code that weren't possible in Claude Projects.
Weekly leadership update, drafted from meeting transcripts
Granola transcribes your week. CoS reads transcripts, applies your tone (from CLAUDE.md), drafts the weekly update. Git commits the draft. Revert if it lands wrong.
$ claude
> Draft this week's CHRO update from granola/2026-06-*.md
> /review
> git commit -m "CHRO update wk23"Calibration prep across 20 manager evaluations
Drop 20 evaluation drafts in a folder. CoS reads all, flags inconsistencies in tone/criteria/length, produces a calibration brief. Saves the comp/perf lead 4 hours.
$ claude
> Read all .md in evaluations/q2-2026/
> Flag tone/criteria/length inconsistencies
> Output one calibration briefPolicy update with full audit trail
Policy in a Git-versioned repo. Every edit shows who changed what and when. Legal can scroll back to "what did this policy say in March?" with one command.
$ git log policies/remote-work.md
$ git diff HEAD~5 policies/remote-work.mdWHERE NEXT