vibe-coding-tracker 0.11.0__tar.gz → 0.12.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: vibe-coding-tracker
3
- Version: 0.11.0
3
+ Version: 0.12.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
@@ -45,7 +45,7 @@ Description-Content-Type: text/markdown
45
45
 
46
46
  </div>
47
47
 
48
- **Track your AI coding costs in real-time.** Vibe Coding Tracker is a lightweight, high-performance CLI tool built in Rust that monitors and analyzes your Claude Code, Codex, Copilot, and Gemini usage — with detailed cost breakdowns, token statistics, and code operation insights, all while keeping the memory footprint minimal.
48
+ **Track your AI coding costs in real-time.** Vibe Coding Tracker is a lightweight, high-performance CLI tool built in Rust that monitors and analyzes your Claude Code, Codex, Copilot, Gemini, and OpenCode usage — with detailed cost breakdowns, token statistics, and code operation insights, all while keeping the memory footprint minimal.
49
49
 
50
50
  [English](README.md) | [繁體中文](README.zh-TW.md) | [简体中文](README.zh-CN.md)
51
51
 
@@ -74,7 +74,7 @@ Choose your preferred view:
74
74
 
75
75
  ### Zero Configuration
76
76
 
77
- Automatically detects and processes logs from Claude Code, Codex, Copilot, and Gemini. No setup required — just run and analyze.
77
+ Automatically detects and processes logs from Claude Code, Codex, Copilot, Gemini, and OpenCode. No setup required — just run and analyze.
78
78
 
79
79
  ### Rich Insights
80
80
 
@@ -106,7 +106,7 @@ Automatically detects and processes logs from Claude Code, Codex, Copilot, and G
106
106
 
107
107
  Choose the installation method that works best for you:
108
108
 
109
- > **Developers**: If you want to build from source or contribute to development, please see [CONTRIBUTING.md](CONTRIBUTING.md).
109
+ > **Developers**: If you want to build from source or contribute to development, please see [CONTRIBUTING.md](.github/CONTRIBUTING.md).
110
110
 
111
111
  #### Method 1: Install from npm
112
112
 
@@ -258,6 +258,7 @@ The tool automatically scans these directories:
258
258
  - `~/.codex/sessions/**/*.jsonl` (Codex — recursive, includes daily subdirectories)
259
259
  - `~/.copilot/session-state/<sessionId>/events.jsonl` (Copilot CLI)
260
260
  - `~/.gemini/tmp/<project_hash>/chats/*.jsonl` (Gemini CLI)
261
+ - `~/.local/share/opencode/opencode.db` (OpenCode — SQLite database; honors `$XDG_DATA_HOME`)
261
262
 
262
263
  ---
263
264
 
@@ -412,5 +413,6 @@ docker run --rm \
412
413
  -v ~/.codex:/root/.codex \
413
414
  -v ~/.copilot:/root/.copilot \
414
415
  -v ~/.gemini:/root/.gemini \
416
+ -v ~/.local/share/opencode:/root/.local/share/opencode \
415
417
  vibe_coding_tracker:latest usage
416
418
  ```
@@ -19,7 +19,7 @@
19
19
 
20
20
  </div>
21
21
 
22
- **Track your AI coding costs in real-time.** Vibe Coding Tracker is a lightweight, high-performance CLI tool built in Rust that monitors and analyzes your Claude Code, Codex, Copilot, and Gemini usage — with detailed cost breakdowns, token statistics, and code operation insights, all while keeping the memory footprint minimal.
22
+ **Track your AI coding costs in real-time.** Vibe Coding Tracker is a lightweight, high-performance CLI tool built in Rust that monitors and analyzes your Claude Code, Codex, Copilot, Gemini, and OpenCode usage — with detailed cost breakdowns, token statistics, and code operation insights, all while keeping the memory footprint minimal.
23
23
 
24
24
  [English](README.md) | [繁體中文](README.zh-TW.md) | [简体中文](README.zh-CN.md)
25
25
 
@@ -48,7 +48,7 @@ Choose your preferred view:
48
48
 
49
49
  ### Zero Configuration
50
50
 
51
- Automatically detects and processes logs from Claude Code, Codex, Copilot, and Gemini. No setup required — just run and analyze.
51
+ Automatically detects and processes logs from Claude Code, Codex, Copilot, Gemini, and OpenCode. No setup required — just run and analyze.
52
52
 
53
53
  ### Rich Insights
54
54
 
@@ -80,7 +80,7 @@ Automatically detects and processes logs from Claude Code, Codex, Copilot, and G
80
80
 
81
81
  Choose the installation method that works best for you:
82
82
 
83
- > **Developers**: If you want to build from source or contribute to development, please see [CONTRIBUTING.md](CONTRIBUTING.md).
83
+ > **Developers**: If you want to build from source or contribute to development, please see [CONTRIBUTING.md](.github/CONTRIBUTING.md).
84
84
 
85
85
  #### Method 1: Install from npm
86
86
 
@@ -232,6 +232,7 @@ The tool automatically scans these directories:
232
232
  - `~/.codex/sessions/**/*.jsonl` (Codex — recursive, includes daily subdirectories)
233
233
  - `~/.copilot/session-state/<sessionId>/events.jsonl` (Copilot CLI)
234
234
  - `~/.gemini/tmp/<project_hash>/chats/*.jsonl` (Gemini CLI)
235
+ - `~/.local/share/opencode/opencode.db` (OpenCode — SQLite database; honors `$XDG_DATA_HOME`)
235
236
 
236
237
  ---
237
238
 
@@ -386,5 +387,6 @@ docker run --rm \
386
387
  -v ~/.codex:/root/.codex \
387
388
  -v ~/.copilot:/root/.copilot \
388
389
  -v ~/.gemini:/root/.gemini \
390
+ -v ~/.local/share/opencode:/root/.local/share/opencode \
389
391
  vibe_coding_tracker:latest usage
390
392
  ```
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibe_coding_tracker"
3
- version = "0.11.0"
3
+ version = "0.12.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" }