vibe-coding-tracker 2.6.0__tar.gz → 2.6.2__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-2.6.0 → vibe_coding_tracker-2.6.2}/PKG-INFO +4 -4
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/README.md +3 -3
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/pyproject.toml +1 -1
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/src/vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-2.6.0 → vibe_coding_tracker-2.6.2}/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: 2.6.
|
|
3
|
+
Version: 2.6.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
|
|
@@ -311,7 +311,7 @@ Totals (by Provider)
|
|
|
311
311
|
]
|
|
312
312
|
```
|
|
313
313
|
|
|
314
|
-
Every row serializes the same flat token fields regardless of provider (Codex's internal nested shape is normalized before output).
|
|
314
|
+
Every row serializes the same flat token fields regardless of provider (Codex's internal nested shape is normalized before output). A provider that bills a bucket the others don't have adds its own key: a Gemini row that spent tool tokens carries `tool_tokens`, which LiteLLM has no rate for and which are counted in `total_tokens` alone.
|
|
315
315
|
|
|
316
316
|
### What It Scans
|
|
317
317
|
|
|
@@ -494,7 +494,7 @@ At startup, vct silently checks for a newer release at most once per UTC day. A
|
|
|
494
494
|
|
|
495
495
|
After a Unix update, vct re-executes the current command with the new binary. On Windows, the current command finishes and a helper applies the replacement afterwards. The automatic path never modifies installs from cargo, npm, PyPI, a distro package, or an unmarked manual or development build. Update those through their package manager instead. To add automatic updates to an existing direct install, run the current official installer once more so it creates the marker.
|
|
496
496
|
|
|
497
|
-
Set `general.auto_update = false` in `~/.vct/config.toml` to disable startup checks and automatic updates. The explicit `vct update` command retains its existing manual behavior.
|
|
497
|
+
Set `general.auto_update = false` in `~/.vct/config.toml` to disable startup checks and automatic updates. The explicit `vct update` command retains its existing manual behavior. `VCT_OFFLINE=1` also applies to it: `--check`, the interactive prompt, and `--force` alike return without contacting GitHub.
|
|
498
498
|
|
|
499
499
|
### Basic Usage
|
|
500
500
|
|
|
@@ -707,7 +707,7 @@ Generic placeholder names (e.g. `default`, what cursor-agent records for auto-mo
|
|
|
707
707
|
|
|
708
708
|
### Cost Details
|
|
709
709
|
|
|
710
|
-
- **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
|
|
710
|
+
- **Context tiers are per request**: LiteLLM's "above Nk tokens" rates (e.g. GPT-5.x above 272k, Gemini above 200k) and its Qwen / doubao volume rows alike apply only to requests whose own prompt context crossed the boundary — never to a whole scan's token sum. Each request bills at whichever of the model's published rows its own context reached, so a model priced in four bands charges its top band for the requests that got there. Providers without per-request granularity — and offline scans — bill at the lowest rate, so tiered-model costs are a lower bound there.
|
|
711
711
|
- **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.
|
|
712
712
|
- **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.
|
|
713
713
|
- **Hermes**: priced the same way as OpenCode — an **exact** LiteLLM match prices from tokens, otherwise vct uses Hermes's own stored cost.
|
|
@@ -285,7 +285,7 @@ Totals (by Provider)
|
|
|
285
285
|
]
|
|
286
286
|
```
|
|
287
287
|
|
|
288
|
-
Every row serializes the same flat token fields regardless of provider (Codex's internal nested shape is normalized before output).
|
|
288
|
+
Every row serializes the same flat token fields regardless of provider (Codex's internal nested shape is normalized before output). A provider that bills a bucket the others don't have adds its own key: a Gemini row that spent tool tokens carries `tool_tokens`, which LiteLLM has no rate for and which are counted in `total_tokens` alone.
|
|
289
289
|
|
|
290
290
|
### What It Scans
|
|
291
291
|
|
|
@@ -468,7 +468,7 @@ At startup, vct silently checks for a newer release at most once per UTC day. A
|
|
|
468
468
|
|
|
469
469
|
After a Unix update, vct re-executes the current command with the new binary. On Windows, the current command finishes and a helper applies the replacement afterwards. The automatic path never modifies installs from cargo, npm, PyPI, a distro package, or an unmarked manual or development build. Update those through their package manager instead. To add automatic updates to an existing direct install, run the current official installer once more so it creates the marker.
|
|
470
470
|
|
|
471
|
-
Set `general.auto_update = false` in `~/.vct/config.toml` to disable startup checks and automatic updates. The explicit `vct update` command retains its existing manual behavior.
|
|
471
|
+
Set `general.auto_update = false` in `~/.vct/config.toml` to disable startup checks and automatic updates. The explicit `vct update` command retains its existing manual behavior. `VCT_OFFLINE=1` also applies to it: `--check`, the interactive prompt, and `--force` alike return without contacting GitHub.
|
|
472
472
|
|
|
473
473
|
### Basic Usage
|
|
474
474
|
|
|
@@ -681,7 +681,7 @@ Generic placeholder names (e.g. `default`, what cursor-agent records for auto-mo
|
|
|
681
681
|
|
|
682
682
|
### Cost Details
|
|
683
683
|
|
|
684
|
-
- **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
|
|
684
|
+
- **Context tiers are per request**: LiteLLM's "above Nk tokens" rates (e.g. GPT-5.x above 272k, Gemini above 200k) and its Qwen / doubao volume rows alike apply only to requests whose own prompt context crossed the boundary — never to a whole scan's token sum. Each request bills at whichever of the model's published rows its own context reached, so a model priced in four bands charges its top band for the requests that got there. Providers without per-request granularity — and offline scans — bill at the lowest rate, so tiered-model costs are a lower bound there.
|
|
685
685
|
- **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.
|
|
686
686
|
- **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.
|
|
687
687
|
- **Hermes**: priced the same way as OpenCode — an **exact** LiteLLM match prices from tokens, otherwise vct uses Hermes's own stored cost.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vibe_coding_tracker"
|
|
3
|
-
version = "2.6.
|
|
3
|
+
version = "2.6.2"
|
|
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 c7e9e23..2190496 100755
|
|
|
Binary file
|
|
index 8808cc7..7b264cc 100755
|
|
|
Binary file
|
|
index 4aaf50a..0dfef98 100755
|
|
|
Binary file
|
|
index 1357213..64e5986 100755
|
|
|
Binary file
|
|
index 1163891..961b656 100644
|
|
|
Binary file
|
|
index 2bf17b4..2c70c3b 100644
|
|
|
Binary file
|
|
File without changes
|