Billing
Subscription Tiers
| Feature | Free | Pro | Team |
|---|---|---|---|
| Price | $0 | $20/month | $50/month |
| Repositories | 3 | Unlimited | Unlimited |
| Visibility | Public repos only | Public + Private | Public + Private |
| History retention | 30 days | 1 year | 1 year |
| Dashboard sync | No | Yes | Yes |
| Watch mode | No | Yes | Yes |
| Tests per repo | 25 | 500 | Unlimited |
| Runs per day | 10 | 100 | Unlimited |
| PR comments (via Action) | Yes | Yes | Yes |
| Priority support | No | No | Yes |
The Free tier is designed for open-source projects and individual developers getting started with the CLI (which works fully standalone). The Pro and Team tiers unlock platform sync and higher usage limits.
PR comments are free on all tiers. The GitHub Action posts PR comments using the built-in GITHUB_TOKEN, so no paid plan is required for PR feedback. Paid plans unlock the dashboard for historical trends, team visibility, and higher usage limits.
LLM Credits
Every Axiomatic plan includes monthly LLM credits that provide access to the Claude API without needing your own API key. Credits are managed entirely server-side -- cost is calculated from the Anthropic API response, so usage tracking is accurate and tamper-proof.
| Plan | Monthly LLM Credits |
|---|---|
| Free | $5/month |
| Pro | $50/month |
| Team | $200/month |
Credits auto-reset every 30 days from the start of your billing period.
Using LLM Credits
- Authenticate with
axm login - Run tests as usual with
axm run-- noANTHROPIC_API_KEYneeded - The CLI automatically routes requests through the Axiomatic LLM proxy
- Check your balance anytime with
axm credits
When your credits are exhausted, you can either wait for the monthly reset, upgrade your plan, or set a local ANTHROPIC_API_KEY environment variable to use your own Anthropic account directly.
Cost Estimation
Typical costs per test depend on the model:
| Model | Cost per test | Best for |
|---|---|---|
| Claude Haiku | $0.01--0.05 | Most tests, fast iteration |
| Claude Sonnet | $0.05--0.20 | Standard accuracy tests |
| Claude Opus | $0.20+ | Critical security and architecture audits |
Caching means you only pay when relevant code changes. A typical project with 10 tests costs a few cents per CI run after the initial analysis.
BYO API Key
You can always bypass platform credits by setting your own API key:
export ANTHROPIC_API_KEY=sk-ant-...
axm runWhen a local API key is set, requests go directly to Anthropic and no platform credits are consumed. This is useful for teams with existing Anthropic contracts or for usage beyond the included credit limits.