noflake license

Manage your NoFlake subscription. Activate a license key, check usage status, or deactivate.

āœ… Available

Usage

npx noflake license [options]

Options

FlagDescription
--activate <key>Activate a license key (contacts the NoFlake API)
--statusShow current tier, usage, and remaining quota
--deactivateRemove your license from this machine

Tiers

TierMonthlyAnnualGenerationsUpdatesFix RunsCI Runs
Free$0$0————
Starter$9$7/mo102515—
Pro$39$29/mo301005030
Team$199$159/mo150500250150

Free tier

The Free tier includes everything that doesn't use AI: project setup (init), template scaffolding, git hook management, and the coverage dashboard. No credit card required. No time limit.

What counts as usage?

  • Generation — Each noflake write invocation counts as 1 generation
  • Update — Each noflake update invocation counts as 1 update
  • Fix run — Each noflake run --fix invocation counts as 1 fix run (plain noflake run without --fix is free)
  • CI run — Each noflake ci invocation in a CI pipeline counts as 1 CI run

Usage resets monthly. NoFlake keeps 12 months of usage history locally.

Pro-only features

These flags require Pro ($39/mo) or Team ($199/mo) tier:

  • --visual — Visual regression testing (screenshot diffing)
  • --api — API endpoint testing
  • --perf — Performance budget assertions
  • CI pipeline integration (noflake ci)

Team-only features

The Team tier ($199/mo, 5 seats) adds:

  • Shared visual baselines across the team
  • Test ownership assignment
  • Approval workflows for test changes
  • 5 concurrent workers (+$19/extra seat)

Examples

# Activate a license
$ npx noflake license --activate nf_live_abc123def456

šŸ”„ NoFlake — License

  āœ… License activated!
  Tier: Pro
  Expires: 2027-03-31

# Check status
$ npx noflake license --status

šŸ”„ NoFlake — License Status

  Tier:    Pro ($39/mo)
  Status:  Active
  Expires: 2027-03-31

  Usage (March 2026):
    Generations:  8 / 30
    Updates:     23 / 100
    Fix Runs:    12 / 50
    CI Runs:      5 / 30

# Deactivate
$ npx noflake license --deactivate

  āœ… License deactivated.
License storage: Your license is stored locally at ~/.noflake/license.json and usage is tracked at ~/.noflake/usage.json. These are per-machine files and are not committed to your repo.