Personal OS for AI Workers. Install, personalize, and run AI agents from your terminal with Claude Code.
npx create-hqThis creates an HQ directory with commands, workers, knowledge bases, and project scaffolding. Then open it in Claude Code and run the setup wizard:
cd hq
claude
/setup| Directory | Contents |
|---|---|
.claude/commands/ |
17 slash commands for session management, workers, projects, content, design |
workers/ |
26 AI workers (dev team, content team, QA, security, finance) |
knowledge/ |
Knowledge bases (Ralph methodology, design styles, security, worker framework) |
starter-projects/ |
3 starter projects (personal assistant, social media, code worker) |
workspace/ |
Threads, checkpoints, reports, social drafts |
Sync your HQ to the cloud for mobile access:
npm install -g @indigoai/hq-cli
hq sync init # Authenticate with IndigoAI
hq sync start # Start background syncAccess your HQ from any device at hq.indigoai.com.
Keep your HQ updated with the latest commands, workers, and knowledge:
hq modules sync # Pull latest updates
hq modules list # See installed modules
hq modules add <repo-url> # Add external modulesindigoai/hq/
├── packages/
│ ├── create-hq/ # npx create-hq installer
│ ├── hq-cli/ # hq modules|sync management CLI
│ └── hq-cloud/ # S3 sync engine
├── apps/
│ └── web/ # PWA dashboard (hq.indigoai.com)
├── infra/ # AWS infrastructure (SST)
└── template/ # HQ template distributed to users
| Package | npm | Purpose |
|---|---|---|
create-hq |
One-time installer | |
@indigoai/hq-cli |
Ongoing management | |
@indigoai/hq-cloud |
Cloud sync engine |
MIT