vibestats 1.3.9 → 1.3.11
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 +6 -0
- package/dist/index.js +1065 -681
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -18,6 +18,9 @@ vibestats # Daily usage table
|
|
|
18
18
|
vibestats --monthly # Monthly aggregation
|
|
19
19
|
vibestats --model # Aggregate by model
|
|
20
20
|
vibestats --total # Show only totals
|
|
21
|
+
vibestats --claude # Claude family stats only
|
|
22
|
+
vibestats --kimi # Kimi family stats only
|
|
23
|
+
vibestats --minimax # MiniMax family stats only
|
|
21
24
|
|
|
22
25
|
# Wrapped summary
|
|
23
26
|
vibestats --wrapped # Annual wrapped summary
|
|
@@ -37,6 +40,9 @@ vibestats --claude-limits
|
|
|
37
40
|
| `--model` | Aggregate by model |
|
|
38
41
|
| `--sessions` | Aggregate by session |
|
|
39
42
|
| `--total` | Show only totals |
|
|
43
|
+
| `--claude` | Show only Claude family stats |
|
|
44
|
+
| `--kimi` | Show only Kimi family stats |
|
|
45
|
+
| `--minimax` | Show only MiniMax family stats |
|
|
40
46
|
| `--since YYYY-MM-DD` | Filter from date |
|
|
41
47
|
| `--until YYYY-MM-DD` | Filter to date |
|
|
42
48
|
| `--last N` | Last N days (shorthand: `--last7`, `--last30`, etc.) |
|