content-grade 1.0.17 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -71,25 +71,25 @@ function incrementUsage() {
71
71
  return u.count;
72
72
  }
73
73
 
74
- // Usage tiers — daily limits per plan
74
+ // Usage tiers — daily limits per plan (properly scaled: higher tiers = better $/run)
75
75
  const TIER_LIMITS = {
76
- free: 5, // 5/day
77
- starter: 20, // ~600/mo 50/mo was too low for daily use
78
- pro: 50, // ~1500/mo
79
- team: 100, // hard cap even for top tier no abuse
76
+ free: 5, // 5/day — try it out
77
+ starter: 10, // 10/day $0.030/run
78
+ pro: 50, // 50/day — $0.019/run (best value per run)
79
+ team: 200, // 200/day$0.013/run (bulk)
80
80
  };
81
81
 
82
82
  const UPGRADE_LINKS = {
83
- free: 'https://buy.stripe.com/eVq6oJbjSdyd6jbaow8k805', // Starter $9/mo
84
- starter: 'https://buy.stripe.com/00w9AV87G65L7nf54c8k806', // Pro $29/mo
85
- pro: 'https://buy.stripe.com/4gM28t73C79P0YR7ck8k807', // Team $79/mo
83
+ free: 'https://buy.stripe.com/4gM14p87GeCh9vn9ks8k80a', // Starter $9/mo
84
+ starter: 'https://buy.stripe.com/bJefZjafO2Tz36Z2W48k80b', // Pro $29/mo
85
+ pro: 'https://buy.stripe.com/cNiaEZfA8cu9bDv4088k80c', // Team $79/mo
86
86
  };
87
87
 
88
88
  const TIER_NAMES = {
89
89
  free: 'Free (5/day)',
90
- starter: 'Starter — $9/mo (20/day)',
90
+ starter: 'Starter — $9/mo (10/day)',
91
91
  pro: 'Pro — $29/mo (50/day)',
92
- team: 'Team — $79/mo (100/day)',
92
+ team: 'Team — $79/mo (200/day)',
93
93
  };
94
94
 
95
95
  function getDailyLimit() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "content-grade",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "AI-powered content analysis CLI. Score any blog post, landing page, or ad copy in under 30 seconds — runs on Claude CLI, no API key needed.",
5
5
  "type": "module",
6
6
  "bin": {