vibe-coding-tracker 1.4.0__tar.gz → 1.5.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.4.0
3
+ Version: 1.5.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
@@ -194,14 +194,15 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
194
194
 
195
195
  ### Flags
196
196
 
197
- | Flag | Purpose |
198
- | ---------------------------------------------- | ----------------------------------- |
199
- | *(none)* | Interactive TUI dashboard (default) |
200
- | `--table` | Static table, no TUI |
201
- | `--text` | Plain text, script-friendly |
202
- | `--json` | JSON with enriched pricing metadata |
203
- | `--output <FILE>` | Save enriched JSON to a file |
204
- | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
197
+ | Flag | Purpose |
198
+ | ---------------------------------------------- | -------------------------------------------------------------------------------- |
199
+ | *(none)* | Interactive TUI dashboard (default) |
200
+ | `--table` | Static table, no TUI |
201
+ | `--text` | Plain text, script-friendly |
202
+ | `--json` | JSON with enriched pricing metadata |
203
+ | `--output <FILE>` | Save enriched JSON to a file |
204
+ | `--merge-providers` | Merge models sharing a base name across provider prefixes (ignored for `--json`) |
205
+ | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
205
206
 
206
207
  ### Basic Usage
207
208
 
@@ -225,11 +226,18 @@ vct usage --output report.json
225
226
  vct usage --weekly
226
227
  vct usage --table --monthly
227
228
  vct usage --json --daily
229
+
230
+ # Merge same model reported under different provider prefixes
231
+ # (e.g. openai/gpt-5.5 + azure/gpt-5.5 + gpt-5.5 -> one row)
232
+ vct usage --table --merge-providers
228
233
  ```
229
234
 
230
235
  > [!NOTE]
231
236
  > Model rows are sorted by cost in ascending order, so the highest-spending model is listed last (right above the `TOTAL` row in `--table`). This applies to the interactive dashboard, `--table`, and `--text` output; `--json` preserves the same order. The interactive dashboard also hides models with zero usage in the selected range.
232
237
 
238
+ > [!TIP]
239
+ > The same model can show up as several rows when it is routed under different provider prefixes (`openai/gpt-5.5`, `azure/gpt-5.5`, plain `gpt-5.5`). `--merge-providers` collapses rows that share the base name after the first `/` (versions like `gpt-5.5` vs `gpt-5.4` stay separate) and sums their already-priced cost. In the interactive dashboard, press `m` to toggle it live; `--merge-providers` opens the dashboard already merged. `--json` is left as the raw per-model export.
240
+
233
241
  ### Preview: Interactive Dashboard (`vct usage`)
234
242
 
235
243
  ```
@@ -249,7 +257,7 @@ vct usage --json --daily
249
257
  ┌─────────────────────────────────────────────────────────────────────────────────────────────┐
250
258
  │ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
251
259
  └─────────────────────────────────────────────────────────────────────────────────────────────┘
252
- ↑/↓ scroll PgUp/PgDn page g/G top/end r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
260
+ ↑/↓ scroll PgUp/PgDn page g/G top/end m merge r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
253
261
  ```
254
262
 
255
263
  ### Preview: Table & JSON (`vct usage`)
@@ -168,14 +168,15 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
168
168
 
169
169
  ### Flags
170
170
 
171
- | Flag | Purpose |
172
- | ---------------------------------------------- | ----------------------------------- |
173
- | *(none)* | Interactive TUI dashboard (default) |
174
- | `--table` | Static table, no TUI |
175
- | `--text` | Plain text, script-friendly |
176
- | `--json` | JSON with enriched pricing metadata |
177
- | `--output <FILE>` | Save enriched JSON to a file |
178
- | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
171
+ | Flag | Purpose |
172
+ | ---------------------------------------------- | -------------------------------------------------------------------------------- |
173
+ | *(none)* | Interactive TUI dashboard (default) |
174
+ | `--table` | Static table, no TUI |
175
+ | `--text` | Plain text, script-friendly |
176
+ | `--json` | JSON with enriched pricing metadata |
177
+ | `--output <FILE>` | Save enriched JSON to a file |
178
+ | `--merge-providers` | Merge models sharing a base name across provider prefixes (ignored for `--json`) |
179
+ | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
179
180
 
180
181
  ### Basic Usage
181
182
 
@@ -199,11 +200,18 @@ vct usage --output report.json
199
200
  vct usage --weekly
200
201
  vct usage --table --monthly
201
202
  vct usage --json --daily
203
+
204
+ # Merge same model reported under different provider prefixes
205
+ # (e.g. openai/gpt-5.5 + azure/gpt-5.5 + gpt-5.5 -> one row)
206
+ vct usage --table --merge-providers
202
207
  ```
203
208
 
204
209
  > [!NOTE]
205
210
  > Model rows are sorted by cost in ascending order, so the highest-spending model is listed last (right above the `TOTAL` row in `--table`). This applies to the interactive dashboard, `--table`, and `--text` output; `--json` preserves the same order. The interactive dashboard also hides models with zero usage in the selected range.
206
211
 
212
+ > [!TIP]
213
+ > The same model can show up as several rows when it is routed under different provider prefixes (`openai/gpt-5.5`, `azure/gpt-5.5`, plain `gpt-5.5`). `--merge-providers` collapses rows that share the base name after the first `/` (versions like `gpt-5.5` vs `gpt-5.4` stay separate) and sums their already-priced cost. In the interactive dashboard, press `m` to toggle it live; `--merge-providers` opens the dashboard already merged. `--json` is left as the raw per-model export.
214
+
207
215
  ### Preview: Interactive Dashboard (`vct usage`)
208
216
 
209
217
  ```
@@ -223,7 +231,7 @@ vct usage --json --daily
223
231
  ┌─────────────────────────────────────────────────────────────────────────────────────────────┐
224
232
  │ Total Cost: $79.33 | Total Tokens: 49.3M | Models: 3 | Memory: 42.8 MB │
225
233
  └─────────────────────────────────────────────────────────────────────────────────────────────┘
226
- ↑/↓ scroll PgUp/PgDn page g/G top/end r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
234
+ ↑/↓ scroll PgUp/PgDn page g/G top/end m merge r refresh q quit | ★ github.com/Mai0313/VibeCodingTracker
227
235
  ```
228
236
 
229
237
  ### Preview: Table & JSON (`vct usage`)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe_coding_tracker"
3
- version = "1.4.0"
3
+ version = "1.5.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" }