vibe-coding-tracker 1.11.0__tar.gz → 1.12.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.11.0 → vibe_coding_tracker-1.12.0}/PKG-INFO +13 -1
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/README.md +12 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/pyproject.toml +1 -1
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/linux-arm64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/linux-x64-gnu/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/macos-arm64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/macos-x64/vibe_coding_tracker +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/windows-arm64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/binaries/windows-x64/vibe_coding_tracker.exe +0 -0
- {vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.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.12.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
|
|
@@ -575,6 +575,13 @@ copilot = true
|
|
|
575
575
|
gemini = true
|
|
576
576
|
opencode = true
|
|
577
577
|
cursor = true
|
|
578
|
+
|
|
579
|
+
[logging]
|
|
580
|
+
# Minimum level written to ~/.vct/logs/vct-YYYY-MM-DD.log.
|
|
581
|
+
# One of: "off" | "error" | "warn" | "info" | "debug" | "trace".
|
|
582
|
+
level = "warn"
|
|
583
|
+
# Days of daily log files to keep; older files are pruned on startup. 0 keeps every file.
|
|
584
|
+
retention_days = 7
|
|
578
585
|
```
|
|
579
586
|
|
|
580
587
|
| Setting | Effect |
|
|
@@ -586,10 +593,15 @@ cursor = true
|
|
|
586
593
|
| `usage.quota.refresh_interval` | Poll cadence for every live quota panel (seconds); higher is safer against a provider's rate limits. |
|
|
587
594
|
| `analysis.refresh_interval` | Redraw cadence of the `analysis` dashboard (seconds). |
|
|
588
595
|
| `providers.*` | Skip a provider entirely (no scan, no API) when `false` — handy if you don't use one. |
|
|
596
|
+
| `logging.level` | Minimum severity written to the log file (`off`..`trace`); never printed to the terminal. |
|
|
597
|
+
| `logging.retention_days` | Days of daily log files to keep; older `vct-*.log` are pruned on startup (`0` keeps all). |
|
|
589
598
|
|
|
590
599
|
> [!NOTE]
|
|
591
600
|
> Cursor `usage` is a **local estimate** from the chat stores, so it behaves like Claude Code / Codex / Copilot / Gemini (all computed from local session files) and needs no network. It undercounts Cursor's real spend, because much of it is billed under Cursor-internal model names the local data cannot price — treat Cursor cost as approximate.
|
|
592
601
|
|
|
602
|
+
> [!NOTE]
|
|
603
|
+
> vct writes diagnostics to `~/.vct/logs/vct-YYYY-MM-DD.log` (plain text, file only — never shown in the dashboard). It stays quiet when healthy (default level `warn`) and the file is created lazily, so a healthy run leaves nothing behind. When a quota fetch fails or a session is skipped, that is where the reason is recorded — bump `logging.level` to `debug` for the full detail.
|
|
604
|
+
|
|
593
605
|
### Managing the file
|
|
594
606
|
|
|
595
607
|
```bash
|
|
@@ -549,6 +549,13 @@ copilot = true
|
|
|
549
549
|
gemini = true
|
|
550
550
|
opencode = true
|
|
551
551
|
cursor = true
|
|
552
|
+
|
|
553
|
+
[logging]
|
|
554
|
+
# Minimum level written to ~/.vct/logs/vct-YYYY-MM-DD.log.
|
|
555
|
+
# One of: "off" | "error" | "warn" | "info" | "debug" | "trace".
|
|
556
|
+
level = "warn"
|
|
557
|
+
# Days of daily log files to keep; older files are pruned on startup. 0 keeps every file.
|
|
558
|
+
retention_days = 7
|
|
552
559
|
```
|
|
553
560
|
|
|
554
561
|
| Setting | Effect |
|
|
@@ -560,10 +567,15 @@ cursor = true
|
|
|
560
567
|
| `usage.quota.refresh_interval` | Poll cadence for every live quota panel (seconds); higher is safer against a provider's rate limits. |
|
|
561
568
|
| `analysis.refresh_interval` | Redraw cadence of the `analysis` dashboard (seconds). |
|
|
562
569
|
| `providers.*` | Skip a provider entirely (no scan, no API) when `false` — handy if you don't use one. |
|
|
570
|
+
| `logging.level` | Minimum severity written to the log file (`off`..`trace`); never printed to the terminal. |
|
|
571
|
+
| `logging.retention_days` | Days of daily log files to keep; older `vct-*.log` are pruned on startup (`0` keeps all). |
|
|
563
572
|
|
|
564
573
|
> [!NOTE]
|
|
565
574
|
> Cursor `usage` is a **local estimate** from the chat stores, so it behaves like Claude Code / Codex / Copilot / Gemini (all computed from local session files) and needs no network. It undercounts Cursor's real spend, because much of it is billed under Cursor-internal model names the local data cannot price — treat Cursor cost as approximate.
|
|
566
575
|
|
|
576
|
+
> [!NOTE]
|
|
577
|
+
> vct writes diagnostics to `~/.vct/logs/vct-YYYY-MM-DD.log` (plain text, file only — never shown in the dashboard). It stays quiet when healthy (default level `warn`) and the file is created lazily, so a healthy run leaves nothing behind. When a quota fetch fails or a session is skipped, that is where the reason is recorded — bump `logging.level` to `debug` for the full detail.
|
|
578
|
+
|
|
567
579
|
### Managing the file
|
|
568
580
|
|
|
569
581
|
```bash
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "vibe_coding_tracker"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.12.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 e55268c..c84b0dc 100755
|
|
|
Binary file
|
|
index a050f46..88e6f69 100755
|
|
|
Binary file
|
|
index aad7ba7..be58b93 100755
|
|
|
Binary file
|
|
index 1fd91ab..93f30de 100755
|
|
|
Binary file
|
|
index 9105866..8719103 100644
|
|
|
Binary file
|
|
index c9247a7..537bd4c 100644
|
|
|
Binary file
|
{vibe_coding_tracker-1.11.0 → vibe_coding_tracker-1.12.0}/src/vibe_coding_tracker/__init__.py
RENAMED
|
File without changes
|