@vibe-cafe/vibe-usage 0.1.7 → 0.1.9

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.
package/package.json CHANGED
@@ -1,14 +1,27 @@
1
1
  {
2
2
  "name": "@vibe-cafe/vibe-usage",
3
- "version": "0.1.7",
3
+ "version": "0.1.9",
4
4
  "description": "Track your AI coding tool token usage and sync to vibecafe.ai",
5
5
  "type": "module",
6
6
  "bin": {
7
- "vibe-usage": "./bin/vibe-usage.js"
7
+ "vibe-usage": "bin/vibe-usage.js"
8
8
  },
9
- "files": ["bin/", "src/"],
10
- "engines": { "node": ">=20" },
11
- "keywords": ["ai", "coding", "usage", "tokens", "claude", "codex", "gemini"],
9
+ "files": [
10
+ "bin/",
11
+ "src/"
12
+ ],
13
+ "engines": {
14
+ "node": ">=20"
15
+ },
16
+ "keywords": [
17
+ "ai",
18
+ "coding",
19
+ "usage",
20
+ "tokens",
21
+ "claude",
22
+ "codex",
23
+ "gemini"
24
+ ],
12
25
  "dependencies": {
13
26
  "ccusage": "18.0.5"
14
27
  },
package/src/hooks.js CHANGED
@@ -4,9 +4,38 @@ import { homedir } from 'node:os';
4
4
 
5
5
  const SYNC_CMD = 'npx @vibe-cafe/vibe-usage sync 2>/dev/null &';
6
6
 
7
+ /**
8
+ * Check if a SessionEnd hook array (new or old format) already contains a vibe-usage hook.
9
+ */
7
10
  function hasVibeUsageHook(hooks) {
8
11
  if (!Array.isArray(hooks)) return false;
9
- return hooks.some(h => h.command && h.command.includes('vibe-usage'));
12
+ return hooks.some(entry => {
13
+ // New format: { matcher?: "...", hooks: [{ type, command }] }
14
+ if (Array.isArray(entry.hooks)) {
15
+ return entry.hooks.some(h => h.command && h.command.includes('vibe-usage'));
16
+ }
17
+ // Old format: { type, command } directly
18
+ if (entry.command && entry.command.includes('vibe-usage')) return true;
19
+ return false;
20
+ });
21
+ }
22
+
23
+ /**
24
+ * Migrate old-format hook entries to the new matcher format.
25
+ * Old: [{ type: "command", command: "..." }]
26
+ * New: [{ hooks: [{ type: "command", command: "..." }] }]
27
+ */
28
+ function migrateOldFormatHooks(hooks) {
29
+ if (!Array.isArray(hooks)) return hooks;
30
+ return hooks.map(entry => {
31
+ // Already new format (has "hooks" array)
32
+ if (Array.isArray(entry.hooks)) return entry;
33
+ // Old format: bare handler → wrap in matcher group
34
+ if (entry.type && entry.command) {
35
+ return { hooks: [entry] };
36
+ }
37
+ return entry;
38
+ });
10
39
  }
11
40
 
12
41
  export function injectClaudeCode() {
@@ -21,11 +50,28 @@ export function injectClaudeCode() {
21
50
  if (!settings.hooks) settings.hooks = {};
22
51
  if (!settings.hooks.SessionEnd) settings.hooks.SessionEnd = [];
23
52
 
53
+ // Migrate any old-format hooks first
54
+ settings.hooks.SessionEnd = migrateOldFormatHooks(settings.hooks.SessionEnd);
55
+
24
56
  if (hasVibeUsageHook(settings.hooks.SessionEnd)) {
25
- return { injected: false, reason: 'already installed' };
57
+ // Update the command in existing hook to use latest
58
+ for (const group of settings.hooks.SessionEnd) {
59
+ if (Array.isArray(group.hooks)) {
60
+ for (const h of group.hooks) {
61
+ if (h.command && h.command.includes('vibe-usage')) {
62
+ h.command = SYNC_CMD;
63
+ }
64
+ }
65
+ }
66
+ }
67
+ writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n', 'utf-8');
68
+ return { injected: false, reason: 'already installed (updated)' };
26
69
  }
27
70
 
28
- settings.hooks.SessionEnd.push({ type: 'command', command: SYNC_CMD });
71
+ // New format: matcher group with hooks array
72
+ settings.hooks.SessionEnd.push({
73
+ hooks: [{ type: 'command', command: SYNC_CMD }],
74
+ });
29
75
  writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n', 'utf-8');
30
76
  return { injected: true };
31
77
  }
@@ -40,7 +86,13 @@ export function injectCodex() {
40
86
  }
41
87
 
42
88
  if (content.includes('vibe-usage')) {
43
- return { injected: false, reason: 'already installed' };
89
+ // Update existing command to use latest
90
+ content = content.replace(
91
+ /npx @vibe-cafe\/vibe-usage(?:@[\d.]+)? sync[^"']*/g,
92
+ SYNC_CMD,
93
+ );
94
+ writeFileSync(configPath, content, 'utf-8');
95
+ return { injected: false, reason: 'already installed (updated)' };
44
96
  }
45
97
 
46
98
  const notifySection = `\n[notify]\ncommand = "${SYNC_CMD}"\n`;
@@ -73,6 +125,7 @@ export function injectGeminiCli() {
73
125
  return { injected: false, reason: 'already installed' };
74
126
  }
75
127
 
128
+ // Gemini CLI still uses the flat format (no matcher groups)
76
129
  settings.hooks.SessionEnd.push({ type: 'command', command: SYNC_CMD });
77
130
  writeFileSync(settingsPath, JSON.stringify(settings, null, 2) + '\n', 'utf-8');
78
131
  return { injected: true };
@@ -1,23 +1,39 @@
1
1
  import { readdirSync, readFileSync, statSync, existsSync } from 'node:fs';
2
- import { join, basename } from 'node:path';
2
+ import { join } from 'node:path';
3
3
  import { homedir } from 'node:os';
4
4
  import { aggregateToBuckets } from './index.js';
5
5
 
6
6
  const SESSIONS_DIR = join(homedir(), '.codex', 'sessions');
7
7
 
8
- export async function parse(lastSync) {
9
- if (!existsSync(SESSIONS_DIR)) return [];
10
-
11
- const entries = [];
12
- let files;
8
+ /**
9
+ * Recursively find all .jsonl files under a directory.
10
+ * Codex CLI stores sessions as: ~/.codex/sessions/YYYY/MM/DD/rollout-*.jsonl
11
+ */
12
+ function findJsonlFiles(dir) {
13
+ const results = [];
14
+ if (!existsSync(dir)) return results;
13
15
  try {
14
- files = readdirSync(SESSIONS_DIR).filter(f => f.endsWith('.jsonl'));
16
+ for (const entry of readdirSync(dir, { withFileTypes: true })) {
17
+ const fullPath = join(dir, entry.name);
18
+ if (entry.isDirectory()) {
19
+ results.push(...findJsonlFiles(fullPath));
20
+ } else if (entry.name.endsWith('.jsonl')) {
21
+ results.push(fullPath);
22
+ }
23
+ }
15
24
  } catch {
16
- return [];
25
+ // ignore unreadable directories
17
26
  }
27
+ return results;
28
+ }
18
29
 
19
- for (const file of files) {
20
- const filePath = join(SESSIONS_DIR, file);
30
+ export async function parse(lastSync) {
31
+ if (!existsSync(SESSIONS_DIR)) return [];
32
+
33
+ const entries = [];
34
+ const files = findJsonlFiles(SESSIONS_DIR);
35
+ if (files.length === 0) return [];
36
+ for (const filePath of files) {
21
37
  if (lastSync) {
22
38
  try {
23
39
  const stat = statSync(filePath);
@@ -27,8 +43,6 @@ export async function parse(lastSync) {
27
43
  }
28
44
  }
29
45
 
30
- const project = basename(file, '.jsonl');
31
-
32
46
  let content;
33
47
  try {
34
48
  content = readFileSync(filePath, 'utf-8');
@@ -36,9 +50,30 @@ export async function parse(lastSync) {
36
50
  continue;
37
51
  }
38
52
 
53
+ // Extract project name and model from session_meta line
54
+ let sessionProject = 'unknown';
55
+ let sessionModel = 'unknown';
56
+ for (const line of content.split('\n')) {
57
+ if (!line.trim()) continue;
58
+ try {
59
+ const obj = JSON.parse(line);
60
+ if (obj.type === 'session_meta' && obj.payload) {
61
+ const meta = obj.payload;
62
+ if (meta.cwd) {
63
+ sessionProject = meta.cwd.split('/').pop() || 'unknown';
64
+ }
65
+ if (meta.git?.repository_url) {
66
+ // e.g. https://github.com/org/repo.git → org/repo
67
+ const match = meta.git.repository_url.match(/([^/]+\/[^/]+?)(?:\.git)?$/);
68
+ if (match) sessionProject = match[1];
69
+ }
70
+ break;
71
+ }
72
+ } catch { break; }
73
+ }
74
+
39
75
  // Track previous cumulative totals per model to compute deltas when only total_token_usage is available
40
76
  const prevTotal = new Map();
41
-
42
77
  for (const line of content.split('\n')) {
43
78
  if (!line.trim()) continue;
44
79
  try {
@@ -78,12 +113,12 @@ export async function parse(lastSync) {
78
113
  }
79
114
  if (!usage) continue;
80
115
 
81
- const model = info.model || payload.model || 'unknown';
116
+ const model = info.model || payload.model || sessionModel;
82
117
 
83
118
  entries.push({
84
119
  source: 'codex',
85
120
  model,
86
- project,
121
+ project: sessionProject,
87
122
  timestamp,
88
123
  inputTokens: usage.input_tokens || 0,
89
124
  outputTokens: usage.output_tokens || 0,
@@ -55,8 +55,11 @@ export async function parse(lastSync) {
55
55
 
56
56
  const messages = data.messages || data.history || [];
57
57
  for (const msg of messages) {
58
+ // New format: tokens on type=gemini messages (ChatRecordingService)
59
+ // Old format: usage/usageMetadata on any message
60
+ const tokens = msg.tokens;
58
61
  const usage = msg.usage || msg.usageMetadata || msg.token_count;
59
- if (!usage) continue;
62
+ if (!tokens && !usage) continue;
60
63
 
61
64
  const timestamp = msg.timestamp || msg.createTime || data.createTime;
62
65
  if (!timestamp) continue;
@@ -64,16 +67,31 @@ export async function parse(lastSync) {
64
67
  if (isNaN(ts.getTime())) continue;
65
68
  if (lastSync && ts <= new Date(lastSync)) continue;
66
69
 
67
- entries.push({
68
- source: 'gemini-cli',
69
- model: msg.model || data.model || 'unknown',
70
- project: 'unknown',
71
- timestamp: ts,
72
- inputTokens: usage.promptTokenCount || usage.input_tokens || 0,
73
- outputTokens: usage.candidatesTokenCount || usage.output_tokens || 0,
74
- cachedInputTokens: usage.cachedContentTokenCount || 0,
75
- reasoningOutputTokens: usage.thoughtsTokenCount || 0,
76
- });
70
+ if (tokens) {
71
+ // New format: { input, output, cached, thoughts, tool, total }
72
+ entries.push({
73
+ source: 'gemini-cli',
74
+ model: msg.model || data.model || 'unknown',
75
+ project: 'unknown',
76
+ timestamp: ts,
77
+ inputTokens: tokens.input || 0,
78
+ outputTokens: tokens.output || 0,
79
+ cachedInputTokens: tokens.cached || 0,
80
+ reasoningOutputTokens: tokens.thoughts || 0,
81
+ });
82
+ } else {
83
+ // Old format: { promptTokenCount, candidatesTokenCount, ... }
84
+ entries.push({
85
+ source: 'gemini-cli',
86
+ model: msg.model || data.model || 'unknown',
87
+ project: 'unknown',
88
+ timestamp: ts,
89
+ inputTokens: usage.promptTokenCount || usage.input_tokens || 0,
90
+ outputTokens: usage.candidatesTokenCount || usage.output_tokens || 0,
91
+ cachedInputTokens: usage.cachedContentTokenCount || 0,
92
+ reasoningOutputTokens: usage.thoughtsTokenCount || 0,
93
+ });
94
+ }
77
95
  }
78
96
  }
79
97