vibe-coding-tracker 1.9.0__tar.gz → 1.10.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: vibe-coding-tracker
3
- Version: 1.9.0
3
+ Version: 1.10.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
@@ -259,7 +259,7 @@ vct usage --table --merge-providers
259
259
  ┌─────────────────────────────────────────────────────────────────────────────────────────────┐
260
260
  │ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
261
261
  └─────────────────────────────────────────────────────────────────────────────────────────────┘
262
- ↑/↓ scroll m merge r refresh q quit | github.com/Mai0313/VibeCodingTracker
262
+ ↑/↓ scroll m merge r refresh q quit | Star on GitHub
263
263
  ```
264
264
 
265
265
  ### Preview: Table & JSON (`vct usage`)
@@ -410,7 +410,7 @@ vct analysis --output today.json --daily
410
410
  ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
411
411
  │ Total Lines: 16.1K | Total Tools: 619 | Models: 3 | Memory: 41.2 MB │
412
412
  └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
413
- ↑/↓ scroll r refresh q quit | github.com/Mai0313/VibeCodingTracker
413
+ ↑/↓ scroll r refresh q quit | Star on GitHub
414
414
  ```
415
415
 
416
416
  ### Preview: Table & JSON (`vct analysis`)
@@ -537,7 +537,7 @@ vct fetch copilot --table
537
537
 
538
538
  ## Configuration
539
539
 
540
- vct keeps its user settings in `~/.vct/config.toml`. The file is **created with defaults on first run**, so you never have to write it by hand — edit it only when you want to change a default. It is generated from vct's typed settings and carries a `#:schema` directive on the first line, so a schema-aware TOML editor (taplo / VS Code "Even Better TOML") gives you autocomplete and validation. Print the schema yourself with `vct config schema`.
540
+ vct keeps its user settings in `~/.vct/config.toml`. The file is **created with defaults on first run**, so you never have to write it by hand — edit it only when you want to change a default. It is generated from vct's typed settings and carries a `#:schema` directive on the first line, so a schema-aware TOML editor (taplo / VS Code "Even Better TOML") gives you autocomplete and validation. Print the schema yourself with `vct config schema`. A file written by an older vct is upgraded to the current layout in place the next time vct reads it (or on demand with `vct config migrate`), so an upgrade never leaves you on a stale format.
541
541
 
542
542
  ```toml
543
543
  #:schema https://raw.githubusercontent.com/Mai0313/VibeCodingTracker/main/vct.schema.json
@@ -603,6 +603,9 @@ vct config edit
603
603
 
604
604
  # Print the JSON schema (regenerate with: vct config schema > vct.schema.json)
605
605
  vct config schema
606
+
607
+ # Upgrade a legacy-format file to the current layout in place
608
+ vct config migrate
606
609
  ```
607
610
 
608
611
  ---
@@ -233,7 +233,7 @@ vct usage --table --merge-providers
233
233
  ┌─────────────────────────────────────────────────────────────────────────────────────────────┐
234
234
  │ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
235
235
  └─────────────────────────────────────────────────────────────────────────────────────────────┘
236
- ↑/↓ scroll m merge r refresh q quit | github.com/Mai0313/VibeCodingTracker
236
+ ↑/↓ scroll m merge r refresh q quit | Star on GitHub
237
237
  ```
238
238
 
239
239
  ### Preview: Table & JSON (`vct usage`)
@@ -384,7 +384,7 @@ vct analysis --output today.json --daily
384
384
  ┌─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
385
385
  │ Total Lines: 16.1K | Total Tools: 619 | Models: 3 | Memory: 41.2 MB │
386
386
  └─────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
387
- ↑/↓ scroll r refresh q quit | github.com/Mai0313/VibeCodingTracker
387
+ ↑/↓ scroll r refresh q quit | Star on GitHub
388
388
  ```
389
389
 
390
390
  ### Preview: Table & JSON (`vct analysis`)
@@ -511,7 +511,7 @@ vct fetch copilot --table
511
511
 
512
512
  ## Configuration
513
513
 
514
- vct keeps its user settings in `~/.vct/config.toml`. The file is **created with defaults on first run**, so you never have to write it by hand — edit it only when you want to change a default. It is generated from vct's typed settings and carries a `#:schema` directive on the first line, so a schema-aware TOML editor (taplo / VS Code "Even Better TOML") gives you autocomplete and validation. Print the schema yourself with `vct config schema`.
514
+ vct keeps its user settings in `~/.vct/config.toml`. The file is **created with defaults on first run**, so you never have to write it by hand — edit it only when you want to change a default. It is generated from vct's typed settings and carries a `#:schema` directive on the first line, so a schema-aware TOML editor (taplo / VS Code "Even Better TOML") gives you autocomplete and validation. Print the schema yourself with `vct config schema`. A file written by an older vct is upgraded to the current layout in place the next time vct reads it (or on demand with `vct config migrate`), so an upgrade never leaves you on a stale format.
515
515
 
516
516
  ```toml
517
517
  #:schema https://raw.githubusercontent.com/Mai0313/VibeCodingTracker/main/vct.schema.json
@@ -577,6 +577,9 @@ vct config edit
577
577
 
578
578
  # Print the JSON schema (regenerate with: vct config schema > vct.schema.json)
579
579
  vct config schema
580
+
581
+ # Upgrade a legacy-format file to the current layout in place
582
+ vct config migrate
580
583
  ```
581
584
 
582
585
  ---
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe_coding_tracker"
3
- version = "1.9.0"
3
+ version = "1.10.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" }