vibestats 1.3.7 → 1.3.9
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 +25 -1
- package/dist/index.js +862 -295
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,6 +21,10 @@ vibestats --total # Show only totals
|
|
|
21
21
|
|
|
22
22
|
# Wrapped summary
|
|
23
23
|
vibestats --wrapped # Annual wrapped summary
|
|
24
|
+
|
|
25
|
+
# Claude local diagnostics
|
|
26
|
+
vibestats --claude-system
|
|
27
|
+
vibestats --claude-limits
|
|
24
28
|
```
|
|
25
29
|
|
|
26
30
|
## CLI Flags
|
|
@@ -41,6 +45,8 @@ vibestats --wrapped # Annual wrapped summary
|
|
|
41
45
|
| `--quiet`, `-q` | Quiet output (totals line) |
|
|
42
46
|
| `--share`, `-s` | Generate a shareable usage URL |
|
|
43
47
|
| `--project`, `-p` | Current project only (Claude Code) |
|
|
48
|
+
| `--claude-system` | Inspect `~/.claude.json` account and app state |
|
|
49
|
+
| `--claude-limits` | Inspect `~/.claude/usage-data`, cache freshness, and local limit signals |
|
|
44
50
|
|
|
45
51
|
### Wrapped Mode
|
|
46
52
|
|
|
@@ -90,6 +96,20 @@ Creates `~/.vibestats.json`:
|
|
|
90
96
|
| Claude Code | `~/.claude/projects/**/*.jsonl` |
|
|
91
97
|
| OpenAI Codex | `~/.codex/sessions/*.jsonl` |
|
|
92
98
|
|
|
99
|
+
Additional Claude diagnostic files:
|
|
100
|
+
- `~/.claude.json`
|
|
101
|
+
- `~/.claude/stats-cache.json`
|
|
102
|
+
- `~/.claude/usage-data/session-meta/*.json`
|
|
103
|
+
- `~/.claude/usage-data/facets/*.json`
|
|
104
|
+
|
|
105
|
+
## Session Semantics
|
|
106
|
+
|
|
107
|
+
- `sessions` means canonical top-level sessions
|
|
108
|
+
- subagents are counted separately and shown as a compact session mix notice
|
|
109
|
+
- token and cost totals still include subagent usage
|
|
110
|
+
- Claude subagents are inferred from sidechain/session metadata
|
|
111
|
+
- Codex subagents are inferred from spawned-thread metadata
|
|
112
|
+
|
|
93
113
|
## Requirements
|
|
94
114
|
|
|
95
115
|
- Node.js 18+
|
|
@@ -97,7 +117,11 @@ Creates `~/.vibestats.json`:
|
|
|
97
117
|
|
|
98
118
|
## View Online
|
|
99
119
|
|
|
100
|
-
Visit [vibestats.wolfai.dev](https://vibestats.wolfai.dev) to view
|
|
120
|
+
Visit [vibestats.wolfai.dev](https://vibestats.wolfai.dev) to view shares in the browser.
|
|
121
|
+
|
|
122
|
+
- [vibestats.wolfai.dev/wrapped](https://vibestats.wolfai.dev/wrapped)
|
|
123
|
+
- [vibestats.wolfai.dev/activity](https://vibestats.wolfai.dev/activity)
|
|
124
|
+
- [vibestats.wolfai.dev/changelog](https://vibestats.wolfai.dev/changelog)
|
|
101
125
|
|
|
102
126
|
## License
|
|
103
127
|
|