vibe-coding-tracker 1.3.3__tar.gz → 1.5.0__tar.gz
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.
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/PKG-INFO +22 -14
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/README.md +21 -13
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/pyproject.toml +1 -1
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.3.3 → vibe_coding_tracker-1.5.0}/src/vibe_coding_tracker/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: vibe-coding-tracker
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
4
4
|
Summary: Vibe Coding Tracker - AI coding assistant telemetry/usage parser, aggregate JSONL events into CodeAnalysis results
|
|
5
5
|
Keywords: cli,ai,coding-assistant,telemetry,claude,codex,gemini,usage-tracker,analytics
|
|
6
6
|
Author: Wei Lee
|
|
@@ -194,14 +194,15 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
|
|
|
194
194
|
|
|
195
195
|
### Flags
|
|
196
196
|
|
|
197
|
-
| Flag | Purpose
|
|
198
|
-
| ---------------------------------------------- |
|
|
199
|
-
| *(none)* | Interactive TUI dashboard (default)
|
|
200
|
-
| `--table` | Static table, no TUI
|
|
201
|
-
| `--text` | Plain text, script-friendly
|
|
202
|
-
| `--json` | JSON with enriched pricing metadata
|
|
203
|
-
| `--output <FILE>` | Save enriched JSON to a file
|
|
204
|
-
| `--
|
|
197
|
+
| Flag | Purpose |
|
|
198
|
+
| ---------------------------------------------- | -------------------------------------------------------------------------------- |
|
|
199
|
+
| *(none)* | Interactive TUI dashboard (default) |
|
|
200
|
+
| `--table` | Static table, no TUI |
|
|
201
|
+
| `--text` | Plain text, script-friendly |
|
|
202
|
+
| `--json` | JSON with enriched pricing metadata |
|
|
203
|
+
| `--output <FILE>` | Save enriched JSON to a file |
|
|
204
|
+
| `--merge-providers` | Merge models sharing a base name across provider prefixes (ignored for `--json`) |
|
|
205
|
+
| `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
|
|
205
206
|
|
|
206
207
|
### Basic Usage
|
|
207
208
|
|
|
@@ -225,11 +226,18 @@ vct usage --output report.json
|
|
|
225
226
|
vct usage --weekly
|
|
226
227
|
vct usage --table --monthly
|
|
227
228
|
vct usage --json --daily
|
|
229
|
+
|
|
230
|
+
# Merge same model reported under different provider prefixes
|
|
231
|
+
# (e.g. openai/gpt-5.5 + azure/gpt-5.5 + gpt-5.5 -> one row)
|
|
232
|
+
vct usage --table --merge-providers
|
|
228
233
|
```
|
|
229
234
|
|
|
230
235
|
> [!NOTE]
|
|
231
236
|
> Model rows are sorted by cost in ascending order, so the highest-spending model is listed last (right above the `TOTAL` row in `--table`). This applies to the interactive dashboard, `--table`, and `--text` output; `--json` preserves the same order. The interactive dashboard also hides models with zero usage in the selected range.
|
|
232
237
|
|
|
238
|
+
> [!TIP]
|
|
239
|
+
> The same model can show up as several rows when it is routed under different provider prefixes (`openai/gpt-5.5`, `azure/gpt-5.5`, plain `gpt-5.5`). `--merge-providers` collapses rows that share the base name after the first `/` (versions like `gpt-5.5` vs `gpt-5.4` stay separate) and sums their already-priced cost. In the interactive dashboard, press `m` to toggle it live; `--merge-providers` opens the dashboard already merged. `--json` is left as the raw per-model export.
|
|
240
|
+
|
|
233
241
|
### Preview: Interactive Dashboard (`vct usage`)
|
|
234
242
|
|
|
235
243
|
```
|
|
@@ -243,13 +251,13 @@ vct usage --json --daily
|
|
|
243
251
|
┌─────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
244
252
|
│ Provider Tokens Cost │
|
|
245
253
|
│ │
|
|
246
|
-
│ Claude
|
|
254
|
+
│ Claude 48.9M $78.93 │
|
|
247
255
|
│ Gemini 207K $0.40 │
|
|
248
256
|
└─────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
249
257
|
┌─────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
250
258
|
│ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
|
|
251
259
|
└─────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
252
|
-
↑/↓ scroll PgUp/PgDn page g/G top/end r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
|
|
260
|
+
↑/↓ scroll PgUp/PgDn page g/G top/end m merge r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
|
|
253
261
|
```
|
|
254
262
|
|
|
255
263
|
### Preview: Table & JSON (`vct usage`)
|
|
@@ -273,8 +281,8 @@ Totals (by Provider)
|
|
|
273
281
|
┌───────────────┬─────────────┬─────────┐
|
|
274
282
|
│ Provider ┆ Tokens ┆ Cost │
|
|
275
283
|
╞═══════════════╪═════════════╪═════════╡
|
|
276
|
-
│ Claude
|
|
277
|
-
│
|
|
284
|
+
│ Claude ┆ 145,495,885 ┆ $151.29 │
|
|
285
|
+
│ Codex ┆ 2,665,368 ┆ $5.56 │
|
|
278
286
|
│ OpenCode ┆ 19,675 ┆ $0.03 │
|
|
279
287
|
│ All Providers ┆ 148,180,928 ┆ $156.88 │
|
|
280
288
|
└───────────────┴─────────────┴─────────┘
|
|
@@ -393,7 +401,7 @@ vct analysis --output today.json --daily
|
|
|
393
401
|
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
394
402
|
│ Provider Edit Lines Read Lines Write Lines Bash Edit Read TodoWrite Write Days │
|
|
395
403
|
│ │
|
|
396
|
-
│ Claude
|
|
404
|
+
│ Claude 1.28K 13.3K 1.58K 125 146 268 18 62 3 │
|
|
397
405
|
│ Gemini 0 0 0 0 0 0 0 0 1 │
|
|
398
406
|
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
399
407
|
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
@@ -168,14 +168,15 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
|
|
|
168
168
|
|
|
169
169
|
### Flags
|
|
170
170
|
|
|
171
|
-
| Flag | Purpose
|
|
172
|
-
| ---------------------------------------------- |
|
|
173
|
-
| *(none)* | Interactive TUI dashboard (default)
|
|
174
|
-
| `--table` | Static table, no TUI
|
|
175
|
-
| `--text` | Plain text, script-friendly
|
|
176
|
-
| `--json` | JSON with enriched pricing metadata
|
|
177
|
-
| `--output <FILE>` | Save enriched JSON to a file
|
|
178
|
-
| `--
|
|
171
|
+
| Flag | Purpose |
|
|
172
|
+
| ---------------------------------------------- | -------------------------------------------------------------------------------- |
|
|
173
|
+
| *(none)* | Interactive TUI dashboard (default) |
|
|
174
|
+
| `--table` | Static table, no TUI |
|
|
175
|
+
| `--text` | Plain text, script-friendly |
|
|
176
|
+
| `--json` | JSON with enriched pricing metadata |
|
|
177
|
+
| `--output <FILE>` | Save enriched JSON to a file |
|
|
178
|
+
| `--merge-providers` | Merge models sharing a base name across provider prefixes (ignored for `--json`) |
|
|
179
|
+
| `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
|
|
179
180
|
|
|
180
181
|
### Basic Usage
|
|
181
182
|
|
|
@@ -199,11 +200,18 @@ vct usage --output report.json
|
|
|
199
200
|
vct usage --weekly
|
|
200
201
|
vct usage --table --monthly
|
|
201
202
|
vct usage --json --daily
|
|
203
|
+
|
|
204
|
+
# Merge same model reported under different provider prefixes
|
|
205
|
+
# (e.g. openai/gpt-5.5 + azure/gpt-5.5 + gpt-5.5 -> one row)
|
|
206
|
+
vct usage --table --merge-providers
|
|
202
207
|
```
|
|
203
208
|
|
|
204
209
|
> [!NOTE]
|
|
205
210
|
> Model rows are sorted by cost in ascending order, so the highest-spending model is listed last (right above the `TOTAL` row in `--table`). This applies to the interactive dashboard, `--table`, and `--text` output; `--json` preserves the same order. The interactive dashboard also hides models with zero usage in the selected range.
|
|
206
211
|
|
|
212
|
+
> [!TIP]
|
|
213
|
+
> The same model can show up as several rows when it is routed under different provider prefixes (`openai/gpt-5.5`, `azure/gpt-5.5`, plain `gpt-5.5`). `--merge-providers` collapses rows that share the base name after the first `/` (versions like `gpt-5.5` vs `gpt-5.4` stay separate) and sums their already-priced cost. In the interactive dashboard, press `m` to toggle it live; `--merge-providers` opens the dashboard already merged. `--json` is left as the raw per-model export.
|
|
214
|
+
|
|
207
215
|
### Preview: Interactive Dashboard (`vct usage`)
|
|
208
216
|
|
|
209
217
|
```
|
|
@@ -217,13 +225,13 @@ vct usage --json --daily
|
|
|
217
225
|
┌─────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
218
226
|
│ Provider Tokens Cost │
|
|
219
227
|
│ │
|
|
220
|
-
│ Claude
|
|
228
|
+
│ Claude 48.9M $78.93 │
|
|
221
229
|
│ Gemini 207K $0.40 │
|
|
222
230
|
└─────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
223
231
|
┌─────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
224
232
|
│ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
|
|
225
233
|
└─────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
226
|
-
↑/↓ scroll PgUp/PgDn page g/G top/end r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
|
|
234
|
+
↑/↓ scroll PgUp/PgDn page g/G top/end m merge r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
|
|
227
235
|
```
|
|
228
236
|
|
|
229
237
|
### Preview: Table & JSON (`vct usage`)
|
|
@@ -247,8 +255,8 @@ Totals (by Provider)
|
|
|
247
255
|
┌───────────────┬─────────────┬─────────┐
|
|
248
256
|
│ Provider ┆ Tokens ┆ Cost │
|
|
249
257
|
╞═══════════════╪═════════════╪═════════╡
|
|
250
|
-
│ Claude
|
|
251
|
-
│
|
|
258
|
+
│ Claude ┆ 145,495,885 ┆ $151.29 │
|
|
259
|
+
│ Codex ┆ 2,665,368 ┆ $5.56 │
|
|
252
260
|
│ OpenCode ┆ 19,675 ┆ $0.03 │
|
|
253
261
|
│ All Providers ┆ 148,180,928 ┆ $156.88 │
|
|
254
262
|
└───────────────┴─────────────┴─────────┘
|
|
@@ -367,7 +375,7 @@ vct analysis --output today.json --daily
|
|
|
367
375
|
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
368
376
|
│ Provider Edit Lines Read Lines Write Lines Bash Edit Read TodoWrite Write Days │
|
|
369
377
|
│ │
|
|
370
|
-
│ Claude
|
|
378
|
+
│ Claude 1.28K 13.3K 1.58K 125 146 268 18 62 3 │
|
|
371
379
|
│ Gemini 0 0 0 0 0 0 0 0 1 │
|
|
372
380
|
└─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
|
373
381
|
┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vibe_coding_tracker"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.5.0"
|
|
4
4
|
description = "Vibe Coding Tracker - AI coding assistant telemetry/usage parser, aggregate JSONL events into CodeAnalysis results"
|
|
5
5
|
authors = [
|
|
6
6
|
{ name = "Wei Lee", email = "mai@mai0313.com" }
|
|
index e54caa2..a0ef62e 100755
|
|
|
Binary file
|
|
index 04914ae..d3b0529 100755
|
|
|
Binary file
|
|
index 9430d2d..0c18ba2 100755
|
|
|
Binary file
|
|
index d698da4..1f5b45d 100755
|
|
|
Binary file
|
|
index 0260e05..463d3b7 100644
|
|
|
Binary file
|
|
index 1b34b6e..dac68e2 100644
|
|
|
Binary file
|
|
File without changes
|