@revenium/claude-code-metering 0.1.2 → 0.1.3

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.
package/README.md CHANGED
@@ -177,7 +177,7 @@ The setup wizard creates `~/.claude/revenium.env` with the following environment
177
177
  | Pro | $20/mo | 0.16 | 84% |
178
178
  | Max 5x | $100/mo | 0.16 | 84% |
179
179
  | Max 20x | $200/mo | 0.08 | 92% |
180
- | Team Premium | $150/seat | 0.24 | 76% |
180
+ | Team Premium | $125/seat | 0.20 | 80% |
181
181
  | Enterprise | Custom | 0.05 | 95% |
182
182
  | API (no subscription) | Pay-per-token | 1.0 | 0% |
183
183
 
@@ -194,7 +194,7 @@ Using this baseline, other tiers are calculated:
194
194
  - **Pro**: $20 for X tokens → $20 / $125 = 0.16 (84% discount)
195
195
  - **Max 5x**: $100 for 5X tokens → $100 / $625 = 0.16 (84% discount)
196
196
  - **Max 20x**: $200 for 20X tokens → $200 / $2,500 = 0.08 (92% discount - best value per dollar)
197
- - **Team Premium**: $150 for 5X tokens → $150 / $625 = 0.24 (76% discount)
197
+ - **Team Premium**: $125 for 5X tokens → $125 / $625 = 0.20 (80% discount)
198
198
  - **Enterprise**: Custom pricing with negotiated discounts = 0.05 (95% discount)
199
199
 
200
200
  **Key Insight:** Higher tiers provide better value per dollar. Max 20x offers 4x the usage of Max 5x for only 2x the cost, resulting in a better discount (92% vs 84%).
@@ -37,8 +37,8 @@ export declare const SUBSCRIPTION_TIER_CONFIG: {
37
37
  readonly multiplier: 0.08;
38
38
  };
39
39
  readonly team_premium: {
40
- readonly name: "Team Premium (~$150 USD/seat or local equivalent)";
41
- readonly multiplier: 0.24;
40
+ readonly name: "Team Premium (~$125 USD/seat or local equivalent)";
41
+ readonly multiplier: 0.2;
42
42
  };
43
43
  readonly enterprise: {
44
44
  readonly name: "Enterprise (custom)";
@@ -41,8 +41,8 @@ exports.SUBSCRIPTION_TIER_CONFIG = {
41
41
  multiplier: 0.08, // $200 / $2,500 API equivalent = 8% (baseline from real data)
42
42
  },
43
43
  team_premium: {
44
- name: 'Team Premium (~$150 USD/seat or local equivalent)',
45
- multiplier: 0.24, // $150 / $625 API equivalent = 24%
44
+ name: 'Team Premium (~$125 USD/seat or local equivalent)',
45
+ multiplier: 0.20, // $125 / $625 API equivalent = 20%
46
46
  },
47
47
  enterprise: {
48
48
  name: 'Enterprise (custom)',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revenium/claude-code-metering",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "CLI tool to configure Claude Code telemetry export to Revenium",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",