vibe-coding-tracker 2.2.0__py3-none-any.whl → 2.2.2__py3-none-any.whl
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/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-2.2.0.dist-info → vibe_coding_tracker-2.2.2.dist-info}/METADATA +11 -5
- vibe_coding_tracker-2.2.2.dist-info/RECORD +11 -0
- vibe_coding_tracker-2.2.0.dist-info/RECORD +0 -11
- {vibe_coding_tracker-2.2.0.dist-info → vibe_coding_tracker-2.2.2.dist-info}/WHEEL +0 -0
- {vibe_coding_tracker-2.2.0.dist-info → vibe_coding_tracker-2.2.2.dist-info}/entry_points.txt +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: vibe-coding-tracker
|
|
3
|
-
Version: 2.2.
|
|
3
|
+
Version: 2.2.2
|
|
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
|
|
@@ -302,12 +302,15 @@ Totals (by Provider)
|
|
|
302
302
|
"output_tokens": 936186,
|
|
303
303
|
"cache_read_input_tokens": 138099926,
|
|
304
304
|
"cache_creation_input_tokens": 6057836,
|
|
305
|
-
"reasoning_output_tokens": 0
|
|
305
|
+
"reasoning_output_tokens": 0,
|
|
306
|
+
"total_tokens": 145495885
|
|
306
307
|
}
|
|
307
308
|
}
|
|
308
309
|
]
|
|
309
310
|
```
|
|
310
311
|
|
|
312
|
+
Every row serializes the same flat token fields regardless of provider (Codex's internal nested shape is normalized before output).
|
|
313
|
+
|
|
311
314
|
### What It Scans
|
|
312
315
|
|
|
313
316
|
The tool automatically scans these directories:
|
|
@@ -368,7 +371,7 @@ A panel appears only for a provider whose credentials are present. When four pan
|
|
|
368
371
|
| `--json` | Complete parser results as JSON: one object for `<FILE>`, otherwise an array of objects |
|
|
369
372
|
| `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter for all-session analysis (see table above; not accepted with `<FILE>`) |
|
|
370
373
|
|
|
371
|
-
See [`
|
|
374
|
+
See [`tests/fixtures/sessions/`](tests/fixtures/sessions/) for sample inputs and matching JSON outputs for the four JSONL providers, plus the Grok session fixture under [`tests/fixtures/sessions/grok/`](tests/fixtures/sessions/grok/).
|
|
372
375
|
|
|
373
376
|
### Basic Usage
|
|
374
377
|
|
|
@@ -426,7 +429,7 @@ vct analysis --json --daily > today.json
|
|
|
426
429
|
|
|
427
430
|
### Preview: Table & JSON (`vct analysis`)
|
|
428
431
|
|
|
429
|
-
`--table` renders the per-model breakdown plus a per-provider summary (with an Active Days column). `--text` and `--table` are compact projections of the same normalized parser records. `--json` keeps the complete records, including per-operation details and token usage. With no `<FILE>`, the outer array contains one `CodeAnalysis` object per session; with `<FILE>`, stdout is that single object and matches the corresponding shape under [`
|
|
432
|
+
`--table` renders the per-model breakdown plus a per-provider summary (with an Active Days column). `--text` and `--table` are compact projections of the same normalized parser records. `--json` keeps the complete records, including per-operation details and token usage. With no `<FILE>`, the outer array contains one `CodeAnalysis` object per session; with `<FILE>`, stdout is that single object and matches the corresponding shape under [`tests/fixtures/sessions/`](tests/fixtures/sessions/).
|
|
430
433
|
|
|
431
434
|
```text
|
|
432
435
|
Analysis Statistics
|
|
@@ -682,12 +685,15 @@ vct config migrate
|
|
|
682
685
|
4. **Fuzzy (AI-powered)**: Uses Jaro-Winkler similarity (70% threshold)
|
|
683
686
|
5. **Fallback**: Shows $0.00 if no match found
|
|
684
687
|
|
|
688
|
+
Generic placeholder names (e.g. `default`, what cursor-agent records for auto-mode sessions) and very short names never take a substring/fuzzy match — unpriced is safer than a coincidental neighbor's price.
|
|
689
|
+
|
|
685
690
|
### Cost Details
|
|
686
691
|
|
|
692
|
+
- **Context tiers are per request**: LiteLLM's "above Nk tokens" rates (e.g. GPT-5.x above 272k, Gemini above 200k) apply only to requests whose own prompt context crossed the threshold. Providers without per-request granularity — and offline scans — bill at base rates, so tiered-model costs are a lower bound there.
|
|
687
693
|
- **Beyond tokens**: Claude web-search tool calls (`server_tool_use.web_search_requests`) are billed per query on top of the token cost; every other model's per-query charge is $0.
|
|
688
694
|
- **OpenCode**: a novel model name is priced from its tokens only on an **exact** LiteLLM match; with no exact match, vct trusts the assistant message's own stored cost instead of guessing from a loosely-similar name.
|
|
689
695
|
- **Hermes**: priced the same way as OpenCode — an **exact** LiteLLM match prices from tokens, otherwise vct uses Hermes's own stored cost.
|
|
690
|
-
- **Grok**: `contextTokensUsed` is priced as cache-read tokens only; this is a point-in-time local context estimate, not cumulative billed usage.
|
|
696
|
+
- **Grok**: `contextTokensUsed` is priced as cache-read tokens only (falling back to the input rate when the model publishes no cache-read price); this is a point-in-time local context estimate, not cumulative billed usage.
|
|
691
697
|
- **Cache is raw**: the daily cache stores the filtered upstream LiteLLM JSON (not a derived shape), so tiered / batch pricing stays available without re-fetching, and each pricing map owns a small in-process LRU so repeated lookups stay cheap without cross-map contamination.
|
|
692
698
|
|
|
693
699
|
---
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
vibe_coding_tracker/__init__.py,sha256=NIuPjNpNMmeDQENVhAjIFOVxscs8_4yoVenwo-Lyx3w,2992
|
|
2
|
+
vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker,sha256=KDtEflSksf6AwBnWzVoTwNSRAuw1kqj-0fEGtfHBQPM,9916760
|
|
3
|
+
vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker,sha256=qWdtFHPb1_xL-vDLxwegI6DGeDbyJuKJhds7418GX1I,12087800
|
|
4
|
+
vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker,sha256=jNI6yS6zxJfcp9nNP7SifthJDggerxdF_uXI8uRdv-8,9259856
|
|
5
|
+
vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker,sha256=SCXYxUaGXku0jMp1eu--mGneqDSTziIFOMIzriwhuwc,11216400
|
|
6
|
+
vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe,sha256=JuygJsbCRYtLBPa2vg96K67sHdXjEFq-D1lRhKHK_Sw,8641536
|
|
7
|
+
vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe,sha256=BK9tVTyMjkuWXzAuKH0JaopP6MscHDvrEa__BRmxzlM,9655808
|
|
8
|
+
vibe_coding_tracker-2.2.2.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
|
|
9
|
+
vibe_coding_tracker-2.2.2.dist-info/entry_points.txt,sha256=F0F9Dn5EMvuQO5fqcbROeH5N4y4jK4PwTKT2TqDIAhQ,97
|
|
10
|
+
vibe_coding_tracker-2.2.2.dist-info/METADATA,sha256=WM2zpHJ5lseSAlPUBlPOTB4PbZ0AWDxprkfgZydPuOM,43937
|
|
11
|
+
vibe_coding_tracker-2.2.2.dist-info/RECORD,,
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
vibe_coding_tracker/__init__.py,sha256=NIuPjNpNMmeDQENVhAjIFOVxscs8_4yoVenwo-Lyx3w,2992
|
|
2
|
-
vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker,sha256=8Fiu9azjF7xPP9-6QK12K_mm5fkhi_VfqA9muujstSg,9916760
|
|
3
|
-
vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker,sha256=5KalW_TmMWJE5obr4lg9EUkY2bGHu3M-_o_7FOqHZY0,12087576
|
|
4
|
-
vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker,sha256=HCK9wKWK9_-ZeiK88FSkZT1ppJP1v6ezyoBlHTAaUFU,9243216
|
|
5
|
-
vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker,sha256=PZ-4GYE3iTh7RmRzfZ5LnV_ydqlcyPIxcN6Hs4TqRB0,11220344
|
|
6
|
-
vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe,sha256=xYOyU0iJDmwBNWfl7yHuGTNpboJzwGGZDm-yn2HcAEs,8621568
|
|
7
|
-
vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe,sha256=D0VLSFEcmoDR_X3HZj1XW6l8GI0QqGcD52BvIOtv5-s,9639936
|
|
8
|
-
vibe_coding_tracker-2.2.0.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
|
|
9
|
-
vibe_coding_tracker-2.2.0.dist-info/entry_points.txt,sha256=F0F9Dn5EMvuQO5fqcbROeH5N4y4jK4PwTKT2TqDIAhQ,97
|
|
10
|
-
vibe_coding_tracker-2.2.0.dist-info/METADATA,sha256=CiKUH-PukJZtaU19DvZwr4nIFOUNA7fNzv7GdJ4BXOQ,43087
|
|
11
|
-
vibe_coding_tracker-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
{vibe_coding_tracker-2.2.0.dist-info → vibe_coding_tracker-2.2.2.dist-info}/entry_points.txt
RENAMED
|
File without changes
|