Axiomatic
Platform

Billing

Subscription Tiers

FeatureFreeProTeam
Price$0$20/month$50/month
Repositories3UnlimitedUnlimited
VisibilityPublic repos onlyPublic + PrivatePublic + Private
History retention30 days1 year1 year
Dashboard syncNoYesYes
Watch modeNoYesYes
Tests per repo25500Unlimited
Runs per day10100Unlimited
PR comments (via Action)YesYesYes
Priority supportNoNoYes

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.

PlanMonthly 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

  1. Authenticate with axm login
  2. Run tests as usual with axm run -- no ANTHROPIC_API_KEY needed
  3. The CLI automatically routes requests through the Axiomatic LLM proxy
  4. 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:

ModelCost per testBest for
Claude Haiku$0.01--0.05Most tests, fast iteration
Claude Sonnet$0.05--0.20Standard 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 run

When 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.

On this page