vibe-coding-tracker 2.2.2__tar.gz → 2.2.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: vibe-coding-tracker
3
- Version: 2.2.2
3
+ Version: 2.2.3
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
@@ -28,8 +28,8 @@ Description-Content-Type: text/markdown
28
28
 
29
29
  # Vibe Coding Tracker — AI Coding Assistant Usage Tracker
30
30
 
31
- [![Crates.io](https://img.shields.io/crates/v/vibe_coding_tracker?logo=rust&style=flat-square&color=E05D44)](https://crates.io/crates/vibe_coding_tracker)
32
- [![Crates.io Downloads](https://img.shields.io/crates/d/vibe_coding_tracker?logo=rust&style=flat-square)](https://crates.io/crates/vibe_coding_tracker)
31
+ [![Crates.io](https://img.shields.io/crates/v/vct-cli?logo=rust&style=flat-square&color=E05D44)](https://crates.io/crates/vct-cli)
32
+ [![Crates.io Downloads](https://img.shields.io/crates/d/vct-cli?logo=rust&style=flat-square)](https://crates.io/crates/vct-cli)
33
33
  [![npm version](https://img.shields.io/npm/v/vibe-coding-tracker?logo=npm&style=flat-square&color=CB3837)](https://www.npmjs.com/package/vibe-coding-tracker)
34
34
  [![npm downloads](https://img.shields.io/npm/dt/vibe-coding-tracker?logo=npm&style=flat-square)](https://www.npmjs.com/package/vibe-coding-tracker)
35
35
  [![PyPI version](https://img.shields.io/pypi/v/vibe_coding_tracker?logo=python&style=flat-square&color=3776AB)](https://pypi.org/project/vibe_coding_tracker/)
@@ -143,7 +143,7 @@ uvx vibe_coding_tracker usage
143
143
  Install using Cargo from the official Rust package registry:
144
144
 
145
145
  ```bash
146
- cargo install vibe_coding_tracker
146
+ cargo install vct-cli
147
147
  ```
148
148
 
149
149
  ### First Run
@@ -174,7 +174,7 @@ Commands:
174
174
  usage Display token usage statistics
175
175
  version Display version information
176
176
  update Update to the latest version from GitHub releases
177
- fetch Fetch a provider's raw quota/usage API response
177
+ quota Fetch a provider's raw quota/usage API response
178
178
  config Show or edit the persistent settings file (~/.vct/config.toml)
179
179
  help Print this message or the help of the given subcommand(s)
180
180
  ```
@@ -324,7 +324,7 @@ The tool automatically scans these directories:
324
324
  - `~/.hermes/state.db` (Hermes — SQLite database, honors `$HERMES_HOME`; `usage` only)
325
325
  - `$GROK_HOME/sessions/*/*/signals.json` (Grok CLI — defaults to `~/.grok`; sibling `updates.jsonl` supplies `analysis` data)
326
326
 
327
- Grok `usage` is one point-in-time local context estimate: vct records `signals.json`'s `contextTokensUsed` as cache-read tokens and estimates cost at the model's cache-read price. It is not cumulative billed usage. `analysis` reconstructs completed Read / Write / Edit / Bash / TodoWrite operations from the sibling `updates.jsonl`. Grok does not support quota panels or `vct fetch`.
327
+ Grok `usage` is one point-in-time local context estimate: vct records `signals.json`'s `contextTokensUsed` as cache-read tokens and estimates cost at the model's cache-read price. It is not cumulative billed usage. `analysis` reconstructs completed Read / Write / Edit / Bash / TodoWrite operations from the sibling `updates.jsonl`. Grok does not support quota panels or `vct quota`.
328
328
 
329
329
  For noninteractive `usage` and `analysis` scans, vct exits with an error when every discovered source fails. If only some sources fail, it keeps the successful results and prints one diagnostic summary to stderr. The TUI stays best-effort and preserves its last successful payload instead.
330
330
 
@@ -535,12 +535,14 @@ The binary version is produced at build time by `build.rs` from `git describe`,
535
535
 
536
536
  ---
537
537
 
538
- ## Fetch Command
538
+ ## Quota Command
539
539
 
540
540
  **Print a provider's raw quota/usage API response — no parsing, no aggregation.**
541
541
 
542
542
  Calls the same quota endpoint the `usage` dashboard uses (Claude / Codex / Copilot / Cursor) exactly once and prints the raw body, so you can inspect the exact API shape or sanity-check your credentials. It reads each provider's stored credentials and does **not** refresh tokens: if a token is expired, re-auth with that provider's own CLI (`claude` / `codex` / `copilot` / `cursor-agent`).
543
543
 
544
+ > The previous name `vct fetch` is kept as a hidden alias, so existing scripts keep working.
545
+
544
546
  ### Flags
545
547
 
546
548
  | Flag | Purpose |
@@ -554,16 +556,16 @@ Calls the same quota endpoint the `usage` dashboard uses (Claude / Codex / Copil
554
556
 
555
557
  ```bash
556
558
  # Raw JSON (default)
557
- vct fetch claude
558
- vct fetch codex
559
- vct fetch copilot
560
- vct fetch cursor
559
+ vct quota claude
560
+ vct quota codex
561
+ vct quota copilot
562
+ vct quota cursor
561
563
 
562
564
  # Flattened plain text
563
- vct fetch codex --text
565
+ vct quota codex --text
564
566
 
565
567
  # Flattened key/value table
566
- vct fetch copilot --table
568
+ vct quota copilot --table
567
569
  ```
568
570
 
569
571
  > [!NOTE]
@@ -2,8 +2,8 @@
2
2
 
3
3
  # Vibe Coding Tracker — AI Coding Assistant Usage Tracker
4
4
 
5
- [![Crates.io](https://img.shields.io/crates/v/vibe_coding_tracker?logo=rust&style=flat-square&color=E05D44)](https://crates.io/crates/vibe_coding_tracker)
6
- [![Crates.io Downloads](https://img.shields.io/crates/d/vibe_coding_tracker?logo=rust&style=flat-square)](https://crates.io/crates/vibe_coding_tracker)
5
+ [![Crates.io](https://img.shields.io/crates/v/vct-cli?logo=rust&style=flat-square&color=E05D44)](https://crates.io/crates/vct-cli)
6
+ [![Crates.io Downloads](https://img.shields.io/crates/d/vct-cli?logo=rust&style=flat-square)](https://crates.io/crates/vct-cli)
7
7
  [![npm version](https://img.shields.io/npm/v/vibe-coding-tracker?logo=npm&style=flat-square&color=CB3837)](https://www.npmjs.com/package/vibe-coding-tracker)
8
8
  [![npm downloads](https://img.shields.io/npm/dt/vibe-coding-tracker?logo=npm&style=flat-square)](https://www.npmjs.com/package/vibe-coding-tracker)
9
9
  [![PyPI version](https://img.shields.io/pypi/v/vibe_coding_tracker?logo=python&style=flat-square&color=3776AB)](https://pypi.org/project/vibe_coding_tracker/)
@@ -117,7 +117,7 @@ uvx vibe_coding_tracker usage
117
117
  Install using Cargo from the official Rust package registry:
118
118
 
119
119
  ```bash
120
- cargo install vibe_coding_tracker
120
+ cargo install vct-cli
121
121
  ```
122
122
 
123
123
  ### First Run
@@ -148,7 +148,7 @@ Commands:
148
148
  usage Display token usage statistics
149
149
  version Display version information
150
150
  update Update to the latest version from GitHub releases
151
- fetch Fetch a provider's raw quota/usage API response
151
+ quota Fetch a provider's raw quota/usage API response
152
152
  config Show or edit the persistent settings file (~/.vct/config.toml)
153
153
  help Print this message or the help of the given subcommand(s)
154
154
  ```
@@ -298,7 +298,7 @@ The tool automatically scans these directories:
298
298
  - `~/.hermes/state.db` (Hermes — SQLite database, honors `$HERMES_HOME`; `usage` only)
299
299
  - `$GROK_HOME/sessions/*/*/signals.json` (Grok CLI — defaults to `~/.grok`; sibling `updates.jsonl` supplies `analysis` data)
300
300
 
301
- Grok `usage` is one point-in-time local context estimate: vct records `signals.json`'s `contextTokensUsed` as cache-read tokens and estimates cost at the model's cache-read price. It is not cumulative billed usage. `analysis` reconstructs completed Read / Write / Edit / Bash / TodoWrite operations from the sibling `updates.jsonl`. Grok does not support quota panels or `vct fetch`.
301
+ Grok `usage` is one point-in-time local context estimate: vct records `signals.json`'s `contextTokensUsed` as cache-read tokens and estimates cost at the model's cache-read price. It is not cumulative billed usage. `analysis` reconstructs completed Read / Write / Edit / Bash / TodoWrite operations from the sibling `updates.jsonl`. Grok does not support quota panels or `vct quota`.
302
302
 
303
303
  For noninteractive `usage` and `analysis` scans, vct exits with an error when every discovered source fails. If only some sources fail, it keeps the successful results and prints one diagnostic summary to stderr. The TUI stays best-effort and preserves its last successful payload instead.
304
304
 
@@ -509,12 +509,14 @@ The binary version is produced at build time by `build.rs` from `git describe`,
509
509
 
510
510
  ---
511
511
 
512
- ## Fetch Command
512
+ ## Quota Command
513
513
 
514
514
  **Print a provider's raw quota/usage API response — no parsing, no aggregation.**
515
515
 
516
516
  Calls the same quota endpoint the `usage` dashboard uses (Claude / Codex / Copilot / Cursor) exactly once and prints the raw body, so you can inspect the exact API shape or sanity-check your credentials. It reads each provider's stored credentials and does **not** refresh tokens: if a token is expired, re-auth with that provider's own CLI (`claude` / `codex` / `copilot` / `cursor-agent`).
517
517
 
518
+ > The previous name `vct fetch` is kept as a hidden alias, so existing scripts keep working.
519
+
518
520
  ### Flags
519
521
 
520
522
  | Flag | Purpose |
@@ -528,16 +530,16 @@ Calls the same quota endpoint the `usage` dashboard uses (Claude / Codex / Copil
528
530
 
529
531
  ```bash
530
532
  # Raw JSON (default)
531
- vct fetch claude
532
- vct fetch codex
533
- vct fetch copilot
534
- vct fetch cursor
533
+ vct quota claude
534
+ vct quota codex
535
+ vct quota copilot
536
+ vct quota cursor
535
537
 
536
538
  # Flattened plain text
537
- vct fetch codex --text
539
+ vct quota codex --text
538
540
 
539
541
  # Flattened key/value table
540
- vct fetch copilot --table
542
+ vct quota copilot --table
541
543
  ```
542
544
 
543
545
  > [!NOTE]
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe_coding_tracker"
3
- version = "2.2.2"
3
+ version = "2.2.3"
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" }