noflake license
Manage your NoFlake subscription. Activate a license key, check usage status, or deactivate.
ā
Available
Usage
npx noflake license [options]Options
| Flag | Description |
|---|---|
--activate <key> | Activate a license key (contacts the NoFlake API) |
--status | Show current tier, usage, and remaining quota |
--deactivate | Remove your license from this machine |
Tiers
| Tier | Monthly | Annual | Generations | Updates | Fix Runs | CI Runs |
|---|---|---|---|---|---|---|
| Free | $0 | $0 | ā | ā | ā | ā |
| Starter | $9 | $7/mo | 10 | 25 | 15 | ā |
| Pro | $39 | $29/mo | 30 | 100 | 50 | 30 |
| Team | $199 | $159/mo | 150 | 500 | 250 | 150 |
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 writeinvocation counts as 1 generation - Update ā Each
noflake updateinvocation counts as 1 update - Fix run ā Each
noflake run --fixinvocation counts as 1 fix run (plainnoflake runwithout--fixis free) - CI run ā Each
noflake ciinvocation 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.