ccusage-ui 0.1.5 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccusage-ui",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "main": "server.js",
5
5
  "bin": {
6
6
  "ccusage-ui": "server.js"
package/public/index.html CHANGED
@@ -280,7 +280,7 @@
280
280
  <div>
281
281
  <div style="display: flex; align-items: center; gap: 8px;">
282
282
  <h2 style="margin:0; font-size:18px;">Usage Trend</h2>
283
- <span class="tier-info" data-tippy-content="⬛ Iron: <1M<br>🟫 Bronze: 1M+<br>⬜ Silver: 5M+<br>🟡 Gold: 10M+<br>💚 Platinum: 30M+<br>💎 Emerald: 50M+<br>💠 Diamond: 100M+<br>🔴 Master: 300M+<br>🟠 Grandmaster: 500M+<br>🏆 Challenger: 1B+">?</span>
283
+ <span class="tier-info" data-tippy-content="⬛ Iron: <5M<br>🟫 Bronze: 5M+<br>⬜ Silver: 10M+<br>🟡 Gold: 30M+<br>💚 Platinum: 50M+<br>💎 Emerald: 100M+<br>💠 Diamond: 300M+<br>🔴 Master: 500M+<br>🟠 Grandmaster: 1B+<br>🏆 Challenger: 1.5B+ (세계 1위급)">?</span>
284
284
  </div>
285
285
 
286
286
  <div id="userLevel" style="font-size:12px; color:#0071e3; margin-top:4px; font-weight:500;"></div>
@@ -493,15 +493,15 @@
493
493
  let displayHTML = "";
494
494
 
495
495
  const getLevelName = (val) => {
496
- if (val >= 1000) return "🏆 Challenger";
497
- if (val >= 500) return "🟠 Grandmaster";
498
- if (val >= 300) return "🔴 Master";
499
- if (val >= 100) return "💠 Diamond";
500
- if (val >= 50) return "💎 Emerald";
501
- if (val >= 30) return "💚 Platinum";
502
- if (val >= 10) return "🟡 Gold";
503
- if (val >= 5) return "⬜ Silver";
504
- if (val >= 1) return "🟫 Bronze";
496
+ if (val >= 1500) return "🏆 Challenger";
497
+ if (val >= 1000) return "🟠 Grandmaster";
498
+ if (val >= 500) return "🔴 Master";
499
+ if (val >= 300) return "💠 Diamond";
500
+ if (val >= 100) return "💎 Emerald";
501
+ if (val >= 50) return "💚 Platinum";
502
+ if (val >= 30) return "🟡 Gold";
503
+ if (val >= 10) return "⬜ Silver";
504
+ if (val >= 5) return "🟫 Bronze";
505
505
  return "⬛ Iron";
506
506
  };
507
507
 
@@ -564,21 +564,24 @@
564
564
 
565
565
  if (currentMetric === 'tokens') {
566
566
  if (currentView === 'monthly') {
567
- drawLine(10, '#ffd700', 'Gold (10M)');
568
- drawLine(100, '#00bcd4', 'Diamond (100M)');
569
- drawLine(300, '#e74c3c', 'Master (300M)');
570
- drawLine(500, '#ff9800', 'Grandmaster (500M)');
571
- drawLine(1000, '#9b59b6', 'Challenger (1B)');
567
+ drawLine(30, '#ffd700', 'Gold (30M)');
568
+ drawLine(100, '#00e5a0', 'Emerald (100M)');
569
+ drawLine(300, '#00bcd4', 'Diamond (300M)');
570
+ drawLine(500, '#e74c3c', 'Master (500M)');
571
+ drawLine(1000, '#ff9800', 'Grandmaster (1B)');
572
+ drawLine(1500, '#9b59b6', 'Challenger (1.5B)');
572
573
  } else {
573
574
  // Daily Benchmarks
574
- // Challenger (1B/mo -> ~33M/day)
575
- drawLine(33, 'rgba(155, 89, 182, 0.5)', 'Challenger (33M)');
576
- // Master (300M/mo -> ~10M/day)
577
- drawLine(10, 'rgba(231, 76, 60, 0.5)', 'Master (10M)');
578
- // Diamond (100M/mo -> ~3.3M/day)
579
- drawLine(3.3, 'rgba(0, 188, 212, 0.5)', 'Diamond (3.3M)');
580
- // Gold (10M/mo -> ~0.33M/day)
581
- drawLine(0.33, 'rgba(255, 215, 0, 0.5)', 'Gold (0.33M)');
575
+ // Challenger (1.5B/mo -> ~50M/day)
576
+ drawLine(50, 'rgba(155, 89, 182, 0.5)', 'Challenger (50M)');
577
+ // Grandmaster (1B/mo -> ~33M/day)
578
+ drawLine(33, 'rgba(255, 152, 0, 0.5)', 'Grandmaster (33M)');
579
+ // Master (500M/mo -> ~16.7M/day)
580
+ drawLine(16.7, 'rgba(231, 76, 60, 0.5)', 'Master (16.7M)');
581
+ // Diamond (300M/mo -> ~10M/day)
582
+ drawLine(10, 'rgba(0, 188, 212, 0.5)', 'Diamond (10M)');
583
+ // Gold (30M/mo -> ~1M/day)
584
+ drawLine(1, 'rgba(255, 215, 0, 0.5)', 'Gold (1M)');
582
585
 
583
586
  // User Average
584
587
  const sum = datasetData.reduce((a, b) => a + b, 0);
@@ -772,28 +775,28 @@
772
775
  }
773
776
 
774
777
  const getLevelName = (val) => {
775
- if (val >= 1000) return "Challenger";
776
- if (val >= 500) return "Grandmaster";
777
- if (val >= 300) return "Master";
778
- if (val >= 100) return "Diamond";
779
- if (val >= 50) return "Emerald";
780
- if (val >= 30) return "Platinum";
781
- if (val >= 10) return "Gold";
782
- if (val >= 5) return "Silver";
783
- if (val >= 1) return "Bronze";
778
+ if (val >= 1500) return "Challenger";
779
+ if (val >= 1000) return "Grandmaster";
780
+ if (val >= 500) return "Master";
781
+ if (val >= 300) return "Diamond";
782
+ if (val >= 100) return "Emerald";
783
+ if (val >= 50) return "Platinum";
784
+ if (val >= 30) return "Gold";
785
+ if (val >= 10) return "Silver";
786
+ if (val >= 5) return "Bronze";
784
787
  return "Iron";
785
788
  };
786
789
 
787
790
  const level = getLevelName(projected);
788
- const levelId = projected >= 1000 ? 'challenger' :
789
- projected >= 500 ? 'grandmaster' :
790
- projected >= 300 ? 'master' :
791
- projected >= 100 ? 'diamond' :
792
- projected >= 50 ? 'emerald' :
793
- projected >= 30 ? 'platinum' :
794
- projected >= 10 ? 'gold' :
795
- projected >= 5 ? 'silver' :
796
- projected >= 1 ? 'bronze' : 'iron';
791
+ const levelId = projected >= 1500 ? 'challenger' :
792
+ projected >= 1000 ? 'grandmaster' :
793
+ projected >= 500 ? 'master' :
794
+ projected >= 300 ? 'diamond' :
795
+ projected >= 100 ? 'emerald' :
796
+ projected >= 50 ? 'platinum' :
797
+ projected >= 30 ? 'gold' :
798
+ projected >= 10 ? 'silver' :
799
+ projected >= 5 ? 'bronze' : 'iron';
797
800
 
798
801
  const shareUrl = `https://sowonlabs.github.io/ccusage-ui/share/${levelId}.html`;
799
802
 
@@ -2,23 +2,22 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
- <title>Starter User - Claude Code Usage</title>
6
-
5
+ <title>Bronze - Claude Code Usage</title>
6
+
7
7
  <!-- Open Graph / Facebook -->
8
8
  <meta property="og:type" content="website">
9
- <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/starter.html">
10
- <meta property="og:title" content="I'm a Starter AI User (Newcomer)">
11
- <meta property="og:description" content="My AI usage pace is starting out. Check your local Claude Code stats with one command: npx ccusage-ui">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/bronze.html">
10
+ <meta property="og:title" content="I'm a Bronze AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 5M tokens/month. Check your stats: npx ccusage-ui">
12
12
  <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
13
 
14
14
  <!-- Twitter -->
15
15
  <meta property="twitter:card" content="summary_large_image">
16
- <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/starter.html">
17
- <meta property="twitter:title" content="I'm a Starter AI User (Newcomer)">
18
- <meta property="twitter:description" content="My AI usage pace is starting out. Check your local Claude Code stats with one command: npx ccusage-ui">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/bronze.html">
17
+ <meta property="twitter:title" content="I'm a Bronze AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 5M tokens/month. Check your stats: npx ccusage-ui">
19
19
  <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
20
 
21
- <!-- Redirect to main repo -->
22
21
  <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
23
22
  <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
24
23
  </head>
@@ -2,23 +2,22 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
- <title>Pro User - Claude Code Usage</title>
6
-
5
+ <title>Challenger - Claude Code Usage</title>
6
+
7
7
  <!-- Open Graph / Facebook -->
8
8
  <meta property="og:type" content="website">
9
- <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/pro.html">
10
- <meta property="og:title" content="I'm a Pro AI User (Daily User)">
11
- <meta property="og:description" content="My AI usage pace is over 1M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/challenger.html">
10
+ <meta property="og:title" content="I'm a Challenger AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 1.5B tokens/month (World #1 Level). Check your stats: npx ccusage-ui">
12
12
  <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
13
 
14
14
  <!-- Twitter -->
15
15
  <meta property="twitter:card" content="summary_large_image">
16
- <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/pro.html">
17
- <meta property="twitter:title" content="I'm a Pro AI User (Daily User)">
18
- <meta property="twitter:description" content="My AI usage pace is over 1M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/challenger.html">
17
+ <meta property="twitter:title" content="I'm a Challenger AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 1.5B tokens/month (World #1 Level). Check your stats: npx ccusage-ui">
19
19
  <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
20
 
21
- <!-- Redirect to main repo -->
22
21
  <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
23
22
  <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
24
23
  </head>
@@ -2,23 +2,22 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
- <title>Mega User - Claude Code Usage</title>
6
-
5
+ <title>Diamond - Claude Code Usage</title>
6
+
7
7
  <!-- Open Graph / Facebook -->
8
8
  <meta property="og:type" content="website">
9
- <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/mega.html">
10
- <meta property="og:title" content="I'm a Mega AI User (Sonnet 4.5 Class)">
11
- <meta property="og:description" content="My AI usage pace is over 50M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/diamond.html">
10
+ <meta property="og:title" content="I'm a Diamond AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 300M tokens/month (Top 1%). Check your stats: npx ccusage-ui">
12
12
  <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
13
 
14
14
  <!-- Twitter -->
15
15
  <meta property="twitter:card" content="summary_large_image">
16
- <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/mega.html">
17
- <meta property="twitter:title" content="I'm a Mega AI User (Sonnet 4.5 Class)">
18
- <meta property="twitter:description" content="My AI usage pace is over 50M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/diamond.html">
17
+ <meta property="twitter:title" content="I'm a Diamond AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 300M tokens/month (Top 1%). Check your stats: npx ccusage-ui">
19
19
  <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
20
 
21
- <!-- Redirect to main repo -->
22
21
  <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
23
22
  <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
24
23
  </head>
@@ -2,23 +2,22 @@
2
2
  <html lang="en">
3
3
  <head>
4
4
  <meta charset="UTF-8">
5
- <title>Power User - Claude Code Usage</title>
6
-
5
+ <title>Emerald - Claude Code Usage</title>
6
+
7
7
  <!-- Open Graph / Facebook -->
8
8
  <meta property="og:type" content="website">
9
- <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/power.html">
10
- <meta property="og:title" content="I'm a Power AI User (Haiku 4.5 Class)">
11
- <meta property="og:description" content="My AI usage pace is over 10M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/emerald.html">
10
+ <meta property="og:title" content="I'm an Emerald AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 100M tokens/month. Check your stats: npx ccusage-ui">
12
12
  <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
13
 
14
14
  <!-- Twitter -->
15
15
  <meta property="twitter:card" content="summary_large_image">
16
- <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/power.html">
17
- <meta property="twitter:title" content="I'm a Power AI User (Haiku 4.5 Class)">
18
- <meta property="twitter:description" content="My AI usage pace is over 10M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/emerald.html">
17
+ <meta property="twitter:title" content="I'm an Emerald AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 100M tokens/month. Check your stats: npx ccusage-ui">
19
19
  <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
20
 
21
- <!-- Redirect to main repo -->
22
21
  <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
23
22
  <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
24
23
  </head>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Gold - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/gold.html">
10
+ <meta property="og:title" content="I'm a Gold AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 30M tokens/month. Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/gold.html">
17
+ <meta property="twitter:title" content="I'm a Gold AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 30M tokens/month. Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Grandmaster - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/grandmaster.html">
10
+ <meta property="og:title" content="I'm a Grandmaster AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 1B tokens/month (Top 0.01%). Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/grandmaster.html">
17
+ <meta property="twitter:title" content="I'm a Grandmaster AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 1B tokens/month (Top 0.01%). Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Iron - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/iron.html">
10
+ <meta property="og:title" content="I'm an Iron AI User">
11
+ <meta property="og:description" content="Just getting started with Claude Code! Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/iron.html">
17
+ <meta property="twitter:title" content="I'm an Iron AI User">
18
+ <meta property="twitter:description" content="Just getting started with Claude Code! Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Master - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/master.html">
10
+ <meta property="og:title" content="I'm a Master AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 500M tokens/month (Top 0.1%). Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/master.html">
17
+ <meta property="twitter:title" content="I'm a Master AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 500M tokens/month (Top 0.1%). Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Platinum - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/platinum.html">
10
+ <meta property="og:title" content="I'm a Platinum AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 50M tokens/month. Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/platinum.html">
17
+ <meta property="twitter:title" content="I'm a Platinum AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 50M tokens/month. Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -0,0 +1,27 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <title>Silver - Claude Code Usage</title>
6
+
7
+ <!-- Open Graph / Facebook -->
8
+ <meta property="og:type" content="website">
9
+ <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/silver.html">
10
+ <meta property="og:title" content="I'm a Silver AI User">
11
+ <meta property="og:description" content="My AI usage pace is over 10M tokens/month. Check your stats: npx ccusage-ui">
12
+ <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
+
14
+ <!-- Twitter -->
15
+ <meta property="twitter:card" content="summary_large_image">
16
+ <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/silver.html">
17
+ <meta property="twitter:title" content="I'm a Silver AI User">
18
+ <meta property="twitter:description" content="My AI usage pace is over 10M tokens/month. Check your stats: npx ccusage-ui">
19
+ <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
+
21
+ <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
22
+ <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
23
+ </head>
24
+ <body>
25
+ <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
26
+ </body>
27
+ </html>
@@ -1,28 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="en">
3
- <head>
4
- <meta charset="UTF-8">
5
- <title>Legendary User - Claude Code Usage</title>
6
-
7
- <!-- Open Graph / Facebook -->
8
- <meta property="og:type" content="website">
9
- <meta property="og:url" content="https://sowonlabs.github.io/ccusage-ui/share/legendary.html">
10
- <meta property="og:title" content="I'm a Legendary AI User (Opus 4.5 Class)">
11
- <meta property="og:description" content="My AI usage pace is over 100M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
12
- <meta property="og:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
13
-
14
- <!-- Twitter -->
15
- <meta property="twitter:card" content="summary_large_image">
16
- <meta property="twitter:url" content="https://sowonlabs.github.io/ccusage-ui/share/legendary.html">
17
- <meta property="twitter:title" content="I'm a Legendary AI User (Opus 4.5 Class)">
18
- <meta property="twitter:description" content="My AI usage pace is over 100M tokens/month. Check your local Claude Code stats with one command: npx ccusage-ui">
19
- <meta property="twitter:image" content="https://sowonlabs.github.io/ccusage-ui/screenshot.png">
20
-
21
- <!-- Redirect to main repo -->
22
- <script>window.location.href = "https://github.com/sowonlabs/ccusage-ui";</script>
23
- <meta http-equiv="refresh" content="0;url=https://github.com/sowonlabs/ccusage-ui" />
24
- </head>
25
- <body>
26
- <p>Redirecting to <a href="https://github.com/sowonlabs/ccusage-ui">ccusage-ui</a>...</p>
27
- </body>
28
- </html>