vibe-coding-tracker 2.2.0__tar.gz → 2.2.1__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.2.0 → vibe_coding_tracker-2.2.1}/PKG-INFO +3 -3
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/README.md +2 -2
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/pyproject.toml +1 -1
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/src/vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-2.2.0 → vibe_coding_tracker-2.2.1}/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.2.
|
|
3
|
+
Version: 2.2.1
|
|
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
|
|
@@ -368,7 +368,7 @@ A panel appears only for a provider whose credentials are present. When four pan
|
|
|
368
368
|
| `--json` | Complete parser results as JSON: one object for `<FILE>`, otherwise an array of objects |
|
|
369
369
|
| `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter for all-session analysis (see table above; not accepted with `<FILE>`) |
|
|
370
370
|
|
|
371
|
-
See [`
|
|
371
|
+
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
372
|
|
|
373
373
|
### Basic Usage
|
|
374
374
|
|
|
@@ -426,7 +426,7 @@ vct analysis --json --daily > today.json
|
|
|
426
426
|
|
|
427
427
|
### Preview: Table & JSON (`vct analysis`)
|
|
428
428
|
|
|
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 [`
|
|
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 [`tests/fixtures/sessions/`](tests/fixtures/sessions/).
|
|
430
430
|
|
|
431
431
|
```text
|
|
432
432
|
Analysis Statistics
|
|
@@ -342,7 +342,7 @@ A panel appears only for a provider whose credentials are present. When four pan
|
|
|
342
342
|
| `--json` | Complete parser results as JSON: one object for `<FILE>`, otherwise an array of objects |
|
|
343
343
|
| `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter for all-session analysis (see table above; not accepted with `<FILE>`) |
|
|
344
344
|
|
|
345
|
-
See [`
|
|
345
|
+
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/).
|
|
346
346
|
|
|
347
347
|
### Basic Usage
|
|
348
348
|
|
|
@@ -400,7 +400,7 @@ vct analysis --json --daily > today.json
|
|
|
400
400
|
|
|
401
401
|
### Preview: Table & JSON (`vct analysis`)
|
|
402
402
|
|
|
403
|
-
`--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 [`
|
|
403
|
+
`--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/).
|
|
404
404
|
|
|
405
405
|
```text
|
|
406
406
|
Analysis Statistics
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vibe_coding_tracker"
|
|
3
|
-
version = "2.2.
|
|
3
|
+
version = "2.2.1"
|
|
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 795c22e..921854c 100755
|
|
|
Binary file
|
|
index 70869ba..fbc8c69 100755
|
|
|
Binary file
|
|
index 7532269..7c8ca8f 100755
|
|
|
Binary file
|
|
index a10f06c..a8caac2 100755
|
|
|
Binary file
|
|
index fdd9b15..1175dd7 100644
|
|
|
Binary file
|
|
index dfd5de7..bfe9d76 100644
|
|
|
Binary file
|
|
File without changes
|