Getting Started
Prerequisites
- Node.js 18+ (nodejs.org)
- Claude Code CLI (docs)
- qmd for search (
brew install tobi/tap/qmd) - gh CLI (optional, for code workers)
Install
npx create-hqThe installer will:
- Ask where to create your HQ (default:
~/hq) - Copy the template (17 commands, 26 workers, 8 knowledge bases)
- Initialize a git repository
- Check your dependencies
- Optionally install
@indigoai/hq-clifor module management - Optionally set up cloud sync
Setup Wizard
Open your HQ in Claude Code and run the interactive setup:
cd hqclaude/setupThe setup wizard walks you through 5 phases:
Phase 1: Dependencies
Checks that qmd, Claude Code, and gh are installed.
Phase 2: Identity
- Your name and handle
- What you do
- Your domains/areas of expertise
- Company or context name
Phase 3: Starter Projects
Choose one or more starter projects:
| Project | What It Does |
|---|---|
| Personal Assistant | Email digests, task scanning, daily briefings |
| Social Media Worker | X/LinkedIn content creation and scheduling |
| Code Worker | Autonomous coding via the Ralph methodology |
Phase 4: Customization
Follow-up questions based on your selections (platforms, tech stack, preferences).
Phase 5: File Generation
Creates your personalized directory structure:
companies/{your-company}/├── settings/ # API credentials (gitignored)├── data/ # Exports, reports└── knowledge/ ├── profile.md └── voice-style.mdFirst Task
After setup, try these:
# Find what to work on/nexttask
# Create a project/prd "Build a landing page for my product"
# Run a worker/run task-executor execute
# Search your HQ/search "how do workers work"Directory Structure
hq/├── .claude/│ ├── CLAUDE.md # Global instructions│ └── commands/ # 17 slash commands├── companies/ # Your company resources├── knowledge/ # Knowledge bases├── workers/ # AI worker configs├── projects/ # Project PRDs├── workspace/│ ├── threads/ # Session history│ ├── checkpoints/ # Session saves│ ├── learnings/ # Captured insights│ └── reports/ # Generated reports└── modules/ └── modules.yaml # Module manifest