Reggie: Quickstart Guide
From zip folder to automated workflow in minutes
Congrats! You just received Reggie. Unzip the folder and follow the steps below to get started.
What’s Inside?
- agents/ — 41 specialized AI agents
- commands/ — 41 slash commands, including 11 pipeline commands
- portable-package/ — System documentation and reference guides
- reggie.md — System architecture and philosophy overview
- AGENT-IMPROVE.md — Learnings accumulator for the improve pipeline
- hooks/ — Post-task hooks for tracking and automation
- all_you_need_is_agents.md — Article for deeper understanding
Prerequisites
You need two things already set up:
- Claude Code CLI — installed and authenticated
- GitHub CLI (gh) — authenticated with your GitHub account (for repo operations and branch management)
If you need help with either, check out the Claude Code CLI or GitHub CLI documentation.
Install
-
Navigate to this folder in your terminal:
cd ~/Downloads/Reggie -
Copy the system files to your Claude config:
cp -r agents/ ~/.claude/agents/ cp -r commands/ ~/.claude/commands/ cp -r portable-package/ ~/.claude/ cp reggie.md ~/.claude/ cp AGENT-IMPROVE.md ~/.claude/ cp -r hooks/ ~/.claude/hooks/ -
Verify the installation:
claude /reggie-guideIf the command loads the guide, your installation succeeded. If Claude Code was already running when you installed, exit and restart it to pick up the new commands.
Start Your First Project From Scratch
- Create a new folder for your project and navigate to it
- Run
claudeto start Claude Code in that folder - Run
/new-repoto bootstrap your project - Once complete, you’ll have:
TASKS.md— prioritized backlogCLAUDE.md— project context for agentsdocs/— documentation structure
- Run
/code-workflowto start building (it picks up the next task from TASKS.md and works through it)
Onboard an Existing Project
Already have a project? Use /onboard to analyze your codebase and generate TASKS.md, CLAUDE.md, and documentation.
- Navigate to your existing project folder
- Run
claudeto start Claude Code - Run
/onboardto start the onboarding pipeline - The system will analyze your codebase, check for compatibility, and generate your project infrastructure. You’ll confirm at two checkpoints: after codebase analysis (findings, tech stack, compatibility), then after infrastructure generation (TASKS.md, CLAUDE.md, docs).
- Once complete, run
/code-workflowto start building
That’s it, you’re using Reggie!
Troubleshooting
/reggie-guide shows nothing: Your commands folder didn’t copy correctly. Re-run cp -r commands/ ~/.claude/commands/, then exit and restart Claude Code.
GitHub operations fail: Run gh auth status to verify GitHub CLI is authenticated. If not, run gh auth login.
Commands work inconsistently: Exit Claude Code completely and restart it. Claude reads ~/.claude/ when it launches, not when commands are copied.
Helpful Tips
- When in doubt, run
/reggie-guide— Explores the full system and shows available commands - Read “All You Need Is Agents” (
all_you_need_is_agents.md) for the technical and philosophical perspective on the system