hail-hydra-cc
v2.1.1
Published
Multi-headed speculative execution framework for Claude Code
Maintainers
Readme
hail-hydra-cc
Multi-headed speculative execution framework for Claude Code. Inspired by speculative decoding — same quality, 3x faster, ~50% cheaper.
Quick Install
npx hail-hydra-ccRuns an interactive installer that deploys 9 Hydra agents into your Claude Code setup.
What is Hydra?
Hydra makes Claude Code's Opus model an intelligent orchestrator instead of doing everything itself. It dispatches fast, cheap Haiku 4.5 and Sonnet 4.6 "heads" for routine tasks, reserving Opus-level reasoning only for genuinely hard problems.
| Head | Model | Role |
|------|-------|------|
| hydra-scout | 🟢 Haiku 4.5 | Codebase exploration, file search |
| hydra-runner | 🟢 Haiku 4.5 | Test execution, builds, linting |
| hydra-scribe | 🟢 Haiku 4.5 | Documentation, READMEs, comments |
| hydra-guard | 🟢 Haiku 4.5 | Security/quality gate after code changes |
| hydra-git | 🟢 Haiku 4.5 | Git operations: commit, branch, diff |
| hydra-coder | 🔵 Sonnet 4.6 | Code implementation, refactoring |
| hydra-analyst | 🔵 Sonnet 4.6 | Code review, debugging, analysis |
| hydra-sentinel-scan | 🟢 Haiku 4.5 | Fast integration sweep |
| hydra-sentinel | 🔵 Sonnet 4.6 | Deep integration analysis |
Expected gains: 2–3× faster tasks, ~50% lower API costs, zero quality loss. (Savings calculated against Opus 4.6 at $5/$25 per MTok — February 2026 pricing)
Usage
npx hail-hydra-cc # Interactive install (recommended)
npx hail-hydra-cc --global # Install to ~/.claude/ — all projects
npx hail-hydra-cc --local # Install to ./.claude/ — this project
npx hail-hydra-cc --both # Install both locations
npx hail-hydra-cc --status # Show what's installed
npx hail-hydra-cc --uninstall # Remove all Hydra files
npx hail-hydra-cc --help # Show helpWhat Gets Installed
~/.claude/ (or ./.claude/ for local)
├── agents/ # 9 agent definitions
│ ├── hydra-scout.md
│ ├── hydra-runner.md
│ ├── hydra-scribe.md
│ ├── hydra-guard.md
│ ├── hydra-git.md
│ ├── hydra-sentinel-scan.md
│ ├── hydra-coder.md
│ ├── hydra-analyst.md
│ └── hydra-sentinel.md
├── commands/hydra/ # 8 slash commands
│ ├── help.md # /hydra:help
│ ├── status.md # /hydra:status
│ ├── update.md # /hydra:update
│ ├── config.md # /hydra:config
│ ├── guard.md # /hydra:guard
│ ├── quiet.md # /hydra:quiet
│ ├── verbose.md # /hydra:verbose
│ └── report.md # /hydra:report
├── hooks/ # 4 lifecycle hooks
│ ├── hydra-check-update.js # SessionStart — version check
│ ├── hydra-statusline.js # StatusLine — status bar
│ ├── hydra-auto-guard.js # PostToolUse — file tracker
│ ├── hydra-notify.js # Notification — task completion sound
│ └── hydra-task-complete.wav # Notification sound file
└── skills/hydra/ # Skill (Claude Code discoverable via /skills)
├── SKILL.md # Orchestrator instructions
├── VERSION # Installed version
└── references/
├── routing-guide.md
└── model-capabilities.mdAll files are bundled inside this package — no network requests during installation.
Requirements
- Node.js 16+
- Claude Code
Full Documentation
License
MIT
