vibe-coding-tracker 0.16.0__tar.gz → 0.17.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: 0.16.0
3
+ Version: 0.17.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
@@ -177,12 +177,12 @@ Commands:
177
177
 
178
178
  Time range flags (shared by `usage` and `analysis`, mutually exclusive, default `--all`):
179
179
 
180
- | Flag | Window |
181
- | ----------- | --------------------------------- |
182
- | `--daily` | Sessions modified today |
183
- | `--weekly` | Current ISO week (Monday → today) |
184
- | `--monthly` | Current calendar month |
185
- | `--all` | Every session on disk (default) |
180
+ | Flag | Window |
181
+ | ------------- | --------------------------------- |
182
+ | `--daily` | Sessions modified today |
183
+ | `--weekly` | Current ISO week (Monday → today) |
184
+ | `--monthly` | Current calendar month |
185
+ | `-a`, `--all` | Every session on disk (default) |
186
186
 
187
187
  ---
188
188
 
@@ -198,6 +198,7 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
198
198
  | `--table` | Static table, no TUI |
199
199
  | `--text` | Plain text, script-friendly |
200
200
  | `--json` | JSON with enriched pricing metadata |
201
+ | `--output <FILE>` | Save enriched JSON to a file |
201
202
  | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
202
203
 
203
204
  ### Basic Usage
@@ -215,6 +216,9 @@ vct usage --text
215
216
  # JSON for data processing (includes cost_usd and matched_model fields)
216
217
  vct usage --json
217
218
 
219
+ # Save enriched JSON straight to a file
220
+ vct usage --output report.json
221
+
218
222
  # Combine time range with output format
219
223
  vct usage --weekly
220
224
  vct usage --table --monthly
@@ -151,12 +151,12 @@ Commands:
151
151
 
152
152
  Time range flags (shared by `usage` and `analysis`, mutually exclusive, default `--all`):
153
153
 
154
- | Flag | Window |
155
- | ----------- | --------------------------------- |
156
- | `--daily` | Sessions modified today |
157
- | `--weekly` | Current ISO week (Monday → today) |
158
- | `--monthly` | Current calendar month |
159
- | `--all` | Every session on disk (default) |
154
+ | Flag | Window |
155
+ | ------------- | --------------------------------- |
156
+ | `--daily` | Sessions modified today |
157
+ | `--weekly` | Current ISO week (Monday → today) |
158
+ | `--monthly` | Current calendar month |
159
+ | `-a`, `--all` | Every session on disk (default) |
160
160
 
161
161
  ---
162
162
 
@@ -172,6 +172,7 @@ Time range flags (shared by `usage` and `analysis`, mutually exclusive, default
172
172
  | `--table` | Static table, no TUI |
173
173
  | `--text` | Plain text, script-friendly |
174
174
  | `--json` | JSON with enriched pricing metadata |
175
+ | `--output <FILE>` | Save enriched JSON to a file |
175
176
  | `--daily` / `--weekly` / `--monthly` / `--all` | Time range filter (see table above) |
176
177
 
177
178
  ### Basic Usage
@@ -189,6 +190,9 @@ vct usage --text
189
190
  # JSON for data processing (includes cost_usd and matched_model fields)
190
191
  vct usage --json
191
192
 
193
+ # Save enriched JSON straight to a file
194
+ vct usage --output report.json
195
+
192
196
  # Combine time range with output format
193
197
  vct usage --weekly
194
198
  vct usage --table --monthly
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe_coding_tracker"
3
- version = "0.16.0"
3
+ version = "0.17.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" }