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 +1 -1
- package/public/index.html +44 -41
- package/public/share/{starter.html → bronze.html} +8 -9
- package/public/share/{pro.html → challenger.html} +8 -9
- package/public/share/{mega.html → diamond.html} +8 -9
- package/public/share/{power.html → emerald.html} +8 -9
- package/public/share/gold.html +27 -0
- package/public/share/grandmaster.html +27 -0
- package/public/share/iron.html +27 -0
- package/public/share/master.html +27 -0
- package/public/share/platinum.html +27 -0
- package/public/share/silver.html +27 -0
- package/public/share/legendary.html +0 -28
package/package.json
CHANGED
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: <
|
|
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 >=
|
|
497
|
-
if (val >=
|
|
498
|
-
if (val >=
|
|
499
|
-
if (val >=
|
|
500
|
-
if (val >=
|
|
501
|
-
if (val >=
|
|
502
|
-
if (val >=
|
|
503
|
-
if (val >=
|
|
504
|
-
if (val >=
|
|
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(
|
|
568
|
-
drawLine(100, '#
|
|
569
|
-
drawLine(300, '#
|
|
570
|
-
drawLine(500, '#
|
|
571
|
-
drawLine(1000, '#
|
|
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 (
|
|
575
|
-
drawLine(
|
|
576
|
-
//
|
|
577
|
-
drawLine(
|
|
578
|
-
//
|
|
579
|
-
drawLine(
|
|
580
|
-
//
|
|
581
|
-
drawLine(
|
|
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 >=
|
|
776
|
-
if (val >=
|
|
777
|
-
if (val >=
|
|
778
|
-
if (val >=
|
|
779
|
-
if (val >=
|
|
780
|
-
if (val >=
|
|
781
|
-
if (val >=
|
|
782
|
-
if (val >=
|
|
783
|
-
if (val >=
|
|
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 >=
|
|
789
|
-
projected >=
|
|
790
|
-
projected >=
|
|
791
|
-
projected >=
|
|
792
|
-
projected >=
|
|
793
|
-
projected >=
|
|
794
|
-
projected >=
|
|
795
|
-
projected >=
|
|
796
|
-
projected >=
|
|
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>
|
|
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/
|
|
10
|
-
<meta property="og:title" content="I'm a
|
|
11
|
-
<meta property="og:description" content="My AI usage pace is
|
|
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/
|
|
17
|
-
<meta property="twitter:title" content="I'm a
|
|
18
|
-
<meta property="twitter:description" content="My AI usage pace is
|
|
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>
|
|
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/
|
|
10
|
-
<meta property="og:title" content="I'm a
|
|
11
|
-
<meta property="og:description" content="My AI usage pace is over
|
|
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/
|
|
17
|
-
<meta property="twitter:title" content="I'm a
|
|
18
|
-
<meta property="twitter:description" content="My AI usage pace is over
|
|
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>
|
|
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/
|
|
10
|
-
<meta property="og:title" content="I'm a
|
|
11
|
-
<meta property="og:description" content="My AI usage pace is over
|
|
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/
|
|
17
|
-
<meta property="twitter:title" content="I'm a
|
|
18
|
-
<meta property="twitter:description" content="My AI usage pace is over
|
|
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>
|
|
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/
|
|
10
|
-
<meta property="og:title" content="I'm
|
|
11
|
-
<meta property="og:description" content="My AI usage pace is over
|
|
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/
|
|
17
|
-
<meta property="twitter:title" content="I'm
|
|
18
|
-
<meta property="twitter:description" content="My AI usage pace is over
|
|
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>
|