@statforge/claudestat 1.1.0 → 1.1.1
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 +66 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Works with Claude Pro, Max 5, and Max 20. Zero cloud dependencies. Pure Node.js.
|
|
|
12
12
|
[](LICENSE)
|
|
13
13
|
[](https://nodejs.org)
|
|
14
14
|
[]()
|
|
15
|
-
[]()
|
|
16
16
|
[](CONTRIBUTING.md)
|
|
17
17
|
|
|
18
18
|
[Installation](#installation) • [Quick Start](#quick-start) • [Commands](#commands) • [Dashboard](#dashboard) • [Contributing](#contributing)
|
|
@@ -137,9 +137,12 @@ That's it. Start a Claude Code session and watch the events flow in.
|
|
|
137
137
|
| `claudestat uninstall` | Remove hooks from Claude Code |
|
|
138
138
|
| `claudestat watch` | Live terminal trace view |
|
|
139
139
|
| `claudestat status` | Show quota, cost, and burn rate |
|
|
140
|
+
| `claudestat status --compact` | One-line output for tmux status bar |
|
|
140
141
|
| `claudestat config` | View or edit configuration |
|
|
141
142
|
| `claudestat top` | Rank tools by cost, call count, or duration |
|
|
142
143
|
| `claudestat export [format]` | Export session data to JSON or CSV |
|
|
144
|
+
| `claudestat share [session-id]` | Generate shareable session card (ASCII/JSON) |
|
|
145
|
+
| `claudestat roast` | Sarcastic usage analysis with roast jokes |
|
|
143
146
|
| `claudestat doctor` | Check installation health and diagnose issues |
|
|
144
147
|
|
|
145
148
|
### `claudestat watch`
|
|
@@ -191,6 +194,68 @@ claudestat status
|
|
|
191
194
|
Burn rate 1,240 tok/min
|
|
192
195
|
```
|
|
193
196
|
|
|
197
|
+
### `claudestat status --compact`
|
|
198
|
+
|
|
199
|
+
One-line output for tmux status bar or scripting. Shows the 5h cycle quota percentage.
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
claudestat status --compact
|
|
203
|
+
Current 45%🟡 pro
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
### `claudestat share`
|
|
207
|
+
|
|
208
|
+
Generate a shareable session card — perfect for sharing on social media or in bug reports.
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
claudestat share
|
|
212
|
+
╔═══════════════════════════════════╗
|
|
213
|
+
║ Session Report · claudestat ║
|
|
214
|
+
╠═══════════════════════════════════╣
|
|
215
|
+
║ Project my-project ║
|
|
216
|
+
║ Duration 2h 14m ║
|
|
217
|
+
║ Tools 847 calls ║
|
|
218
|
+
║ Cost $0.84 ║
|
|
219
|
+
║ Cache hit 27% saved ($0.31) ║
|
|
220
|
+
║ Top tool Bash (38%) ║
|
|
221
|
+
║ Efficiency 91 / 100 ║
|
|
222
|
+
╚═══════════════════════════════════╝
|
|
223
|
+
github.com/DeibyGS/claudestat
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
Options:
|
|
227
|
+
- `--format ascii|json` — output format (default: ascii)
|
|
228
|
+
- `--copy` — copy to clipboard automatically (macOS only)
|
|
229
|
+
|
|
230
|
+
### `claudestat roast`
|
|
231
|
+
|
|
232
|
+
Get a sarcastic analysis of your Claude Code usage — humor with insights.
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
claudestat roast
|
|
236
|
+
|
|
237
|
+
=== Claude Code Stats (last 30 days) ===
|
|
238
|
+
Sessions: 47
|
|
239
|
+
Total cost: $12.40
|
|
240
|
+
Bash calls: 1,240
|
|
241
|
+
Loops: 8
|
|
242
|
+
Efficiency: 72/100
|
|
243
|
+
|
|
244
|
+
🔥 Your Claude Code Roast
|
|
245
|
+
|
|
246
|
+
You called Bash 1,240 times last month.
|
|
247
|
+
That's once every 2.3 minutes.
|
|
248
|
+
Are you okay?
|
|
249
|
+
|
|
250
|
+
You hit 90%+ context in 12 sessions.
|
|
251
|
+
Claude was writing with amnesia half the time.
|
|
252
|
+
|
|
253
|
+
You spent $4.20 on loops you never noticed.
|
|
254
|
+
That's 14 coffees. Just saying.
|
|
255
|
+
|
|
256
|
+
Efficiency: 72/100 — room for growth, champ.
|
|
257
|
+
```
|
|
258
|
+
|
|
194
259
|
### `claudestat doctor`
|
|
195
260
|
|
|
196
261
|
Diagnoses common installation problems — useful if `claudestat start` fails or hooks are not firing.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@statforge/claudestat",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Observability layer for Claude Code — live token tracking, cost analytics, quota guard, loop detection, and usage dashboard. The htop for Claude Code.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|