vibe-coding-tracker 1.5.1__tar.gz → 1.6.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.5.1 → vibe_coding_tracker-1.6.0}/PKG-INFO +38 -1
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/README.md +37 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/pyproject.toml +1 -1
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.0}/src/vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.5.1 → vibe_coding_tracker-1.6.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.6.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
|
|
@@ -174,6 +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
178
|
help Print this message or the help of the given subcommand(s)
|
|
178
179
|
```
|
|
179
180
|
|
|
@@ -496,6 +497,42 @@ The binary version is produced at build time by `build.rs` from `git describe`,
|
|
|
496
497
|
|
|
497
498
|
---
|
|
498
499
|
|
|
500
|
+
## Fetch Command
|
|
501
|
+
|
|
502
|
+
**Print a provider's raw quota/usage API response — no parsing, no aggregation.**
|
|
503
|
+
|
|
504
|
+
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`).
|
|
505
|
+
|
|
506
|
+
### Flags
|
|
507
|
+
|
|
508
|
+
| Flag | Purpose |
|
|
509
|
+
| --------- | --------------------------------------------- |
|
|
510
|
+
| *(none)* | Pretty JSON (default) |
|
|
511
|
+
| `--json` | Pretty JSON |
|
|
512
|
+
| `--text` | Flattened `key: value` lines, script-friendly |
|
|
513
|
+
| `--table` | Flattened Field / Value table |
|
|
514
|
+
|
|
515
|
+
### Basic Usage
|
|
516
|
+
|
|
517
|
+
```bash
|
|
518
|
+
# Raw JSON (default)
|
|
519
|
+
vct fetch claude
|
|
520
|
+
vct fetch codex
|
|
521
|
+
vct fetch copilot
|
|
522
|
+
vct fetch cursor
|
|
523
|
+
|
|
524
|
+
# Flattened plain text
|
|
525
|
+
vct fetch codex --text
|
|
526
|
+
|
|
527
|
+
# Flattened key/value table
|
|
528
|
+
vct fetch copilot --table
|
|
529
|
+
```
|
|
530
|
+
|
|
531
|
+
> [!NOTE]
|
|
532
|
+
> The response body is printed to stdout as-is. On an HTTP error the body is still printed and the process exits non-zero; a 401/403 additionally prints a `run: <cli> login` hint on stderr.
|
|
533
|
+
|
|
534
|
+
---
|
|
535
|
+
|
|
499
536
|
## Smart Pricing System
|
|
500
537
|
|
|
501
538
|
### How It Works
|
|
@@ -148,6 +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
152
|
help Print this message or the help of the given subcommand(s)
|
|
152
153
|
```
|
|
153
154
|
|
|
@@ -470,6 +471,42 @@ The binary version is produced at build time by `build.rs` from `git describe`,
|
|
|
470
471
|
|
|
471
472
|
---
|
|
472
473
|
|
|
474
|
+
## Fetch Command
|
|
475
|
+
|
|
476
|
+
**Print a provider's raw quota/usage API response — no parsing, no aggregation.**
|
|
477
|
+
|
|
478
|
+
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`).
|
|
479
|
+
|
|
480
|
+
### Flags
|
|
481
|
+
|
|
482
|
+
| Flag | Purpose |
|
|
483
|
+
| --------- | --------------------------------------------- |
|
|
484
|
+
| *(none)* | Pretty JSON (default) |
|
|
485
|
+
| `--json` | Pretty JSON |
|
|
486
|
+
| `--text` | Flattened `key: value` lines, script-friendly |
|
|
487
|
+
| `--table` | Flattened Field / Value table |
|
|
488
|
+
|
|
489
|
+
### Basic Usage
|
|
490
|
+
|
|
491
|
+
```bash
|
|
492
|
+
# Raw JSON (default)
|
|
493
|
+
vct fetch claude
|
|
494
|
+
vct fetch codex
|
|
495
|
+
vct fetch copilot
|
|
496
|
+
vct fetch cursor
|
|
497
|
+
|
|
498
|
+
# Flattened plain text
|
|
499
|
+
vct fetch codex --text
|
|
500
|
+
|
|
501
|
+
# Flattened key/value table
|
|
502
|
+
vct fetch copilot --table
|
|
503
|
+
```
|
|
504
|
+
|
|
505
|
+
> [!NOTE]
|
|
506
|
+
> The response body is printed to stdout as-is. On an HTTP error the body is still printed and the process exits non-zero; a 401/403 additionally prints a `run: <cli> login` hint on stderr.
|
|
507
|
+
|
|
508
|
+
---
|
|
509
|
+
|
|
473
510
|
## Smart Pricing System
|
|
474
511
|
|
|
475
512
|
### How It Works
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vibe_coding_tracker"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.6.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 de87152..da7bec1 100755
|
|
|
Binary file
|
|
index 2595a4d..42c7a3c 100755
|
|
|
Binary file
|
|
index de21bf8..9a9a759 100755
|
|
|
Binary file
|
|
index a89fb87..8b41d8d 100755
|
|
|
Binary file
|
|
index cb8bda2..69f90d9 100644
|
|
|
Binary file
|
|
index f3fd3d2..f47b424 100644
|
|
|
Binary file
|
|
File without changes
|