Install
Getting Hyrax running against your codebase takes about ten minutes. There's no CLI, no agent to deploy, no infrastructure on your side — Hyrax is a hosted product. You sign in, tell it which GitHub repos it can read, and you're done.
1. Sign in
Open the app and sign in with your work account.
- Hosted:
https://app.get-hydra.dev(deployed dev environment). Staging / prod apexes still TBD. - Local dev:
http://localhost:5173if you're running the frontend yourself
You'll land on the dashboard. If your team already has a workspace, ask an admin to invite you. If you're the first one in, the workspace is created for you.
2. Install the GitHub App
Hyrax reads code, opens pull requests, and posts review comments via a GitHub App that you authorize on your org or specific repos.
- Go to Settings → Integrations → GitHub.
- Click Install Hyrax GitHub App.
- On GitHub, pick the org and the repos you want Hyrax to access. You can scope it to a handful to start and add more later.
- Approve the install. You'll be redirected back to Hyrax.
Hyrax never stores GitHub OAuth tokens — every action against your repos uses a short-lived installation token issued by GitHub at request time.
3. (Optional) Bring your own Anthropic key
Hyrax runs on Claude. By default, every audit, fix, and review runs on Hyrax-managed inference (we host Claude on AWS Bedrock and bill you on the Hyrax invoice) — there's nothing to configure to start running jobs.
If you'd rather pay Anthropic directly and see your usage on the Anthropic console, you can bring your own key:
- Generate a key at console.anthropic.com.
- In Hyrax, go to Settings → API keys.
- Paste the key and save. It's encrypted at rest.
When a key is configured, we route your audits through Anthropic's API using your key — your billing, your rate limit. Remove the key and we route through Hyrax-managed Bedrock again. Either way, Hyrax never proxies one tenant's traffic through another tenant's key.
4. Add your first repo
- Click + Add repo on the dashboard.
- Pick a repo from the list (only ones the GitHub App can see show up).
- Optionally pick a non-default branch — repos are tracked as
name@branch, so you can auditmainanddevelopindependently. - Save.
Hyrax immediately runs discovery on the repo — a one-time pass that learns the architecture, conventions, and stack. It takes 5–10 minutes and costs about $5–10 in Anthropic usage. Discovery is what makes every later audit and fix actually understand your codebase, so don't skip it.
5. (Optional) Link related repos
If two of your repos relate — a service and its tests, a producer and its consumer, a provider and its schemas — tell Hyrax. Open the repo in the app, go to Related repos, and add each link with its relationship (tests, shared-schemas, consumer, provider, sibling).
Every audit, fix, and review on the linked repo will pick up the related repo's discovery context automatically. This is the single highest-leverage configuration step in the product, and it's free.