@omnitype-code/cli 0.1.3 → 0.1.4

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.
@@ -0,0 +1,237 @@
1
+ /**
2
+ * ToolHookInstallers coverage tests — targets uncovered tool installers:
3
+ * Windsurf, Codex, Gemini, Droid, Firebender, Cline, Copilot, Amp, OpenCode, Pi
4
+ */
5
+
6
+ import * as fs from 'fs';
7
+ import * as os from 'os';
8
+ import * as path from 'path';
9
+
10
+ import {
11
+ installAllToolHooks,
12
+ checkHookStatus,
13
+ HOOK_VERSION,
14
+ } from '../core/ToolHookInstallers';
15
+
16
+ const HOME = os.homedir();
17
+
18
+ function makeScratchDir(name: string): string {
19
+ const d = path.join(HOME, `.omnitype-cov-test-${name}-${Date.now()}`);
20
+ fs.mkdirSync(d, { recursive: true });
21
+ return d;
22
+ }
23
+ function rmDir(d: string) { fs.rmSync(d, { recursive: true, force: true }); }
24
+ function readJson(p: string) { try { return JSON.parse(fs.readFileSync(p, 'utf8')); } catch { return {}; } }
25
+
26
+ // ── Universal hook command content ────────────────────────────────────────────
27
+
28
+ describe('ToolHookInstallers — universal hook command (all tools)', () => {
29
+ // Install into a scratch ~/.claude and read the command back
30
+ let cmd: string;
31
+ let scratchClaude: string;
32
+ const realClaude = path.join(HOME, '.claude');
33
+ const backup = path.join(HOME, `.claude-backup-cov-${Date.now()}`);
34
+ let hadReal = false;
35
+
36
+ beforeAll(() => {
37
+ scratchClaude = makeScratchDir('claude');
38
+ if (fs.existsSync(realClaude)) { fs.renameSync(realClaude, backup); hadReal = true; }
39
+ fs.renameSync(scratchClaude, realClaude);
40
+ installAllToolHooks();
41
+ const s = readJson(path.join(realClaude, 'settings.json'));
42
+ cmd = s?.hooks?.PreToolUse?.[0]?.hooks?.[0]?.command ?? '';
43
+ rmDir(realClaude);
44
+ if (hadReal) fs.renameSync(backup, realClaude);
45
+ });
46
+
47
+ it('tries j.model (Cursor/Codex field)', () => {
48
+ expect(cmd).toContain('j.model');
49
+ });
50
+ it('tries j.model_name (Windsurf field)', () => {
51
+ expect(cmd).toContain('j.model_name');
52
+ });
53
+ it('tries j.modelName (camelCase variant)', () => {
54
+ expect(cmd).toContain('j.modelName');
55
+ });
56
+ it('tries j.modelID', () => {
57
+ expect(cmd).toContain('j.modelID');
58
+ });
59
+ it('tries j.data.model (nested variant)', () => {
60
+ expect(cmd).toContain('j?.data?.model');
61
+ });
62
+ it('falls back to transcript_path JSONL', () => {
63
+ expect(cmd).toContain('j.transcript_path');
64
+ expect(cmd).toContain('extractModelFromJsonl');
65
+ });
66
+ it('falls back to env var last', () => {
67
+ expect(cmd).toContain('CLAUDE_MODEL');
68
+ expect(cmd).toContain('ANTHROPIC_MODEL');
69
+ });
70
+ });
71
+
72
+ // ── Windsurf installer ────────────────────────────────────────────────────────
73
+
74
+ describe('ToolHookInstallers — Windsurf', () => {
75
+ let scratchCodium: string;
76
+ const realCodium = path.join(HOME, '.codeium');
77
+ const backup = path.join(HOME, `.codeium-backup-${Date.now()}`);
78
+ let hadReal = false;
79
+
80
+ beforeEach(() => {
81
+ scratchCodium = makeScratchDir('codeium');
82
+ if (fs.existsSync(realCodium)) { fs.renameSync(realCodium, backup); hadReal = true; }
83
+ fs.renameSync(scratchCodium, realCodium);
84
+ });
85
+
86
+ afterEach(() => {
87
+ rmDir(realCodium);
88
+ if (hadReal) { fs.renameSync(backup, realCodium); hadReal = false; }
89
+ });
90
+
91
+ it('installs hook into windsurf/hooks.json', () => {
92
+ // The installer skips if neither hookPath nor its parent dir exists.
93
+ // Create the parent dir so it proceeds.
94
+ const windsurfDir = path.join(realCodium, 'windsurf');
95
+ fs.mkdirSync(windsurfDir, { recursive: true });
96
+ installAllToolHooks();
97
+ const hooks = readJson(path.join(windsurfDir, 'hooks.json'));
98
+ const cmds: string[] = (hooks?.hooks?.pre_write_code ?? []).map((h: any) => h?.command ?? '');
99
+ expect(cmds.some(c => c.includes(HOOK_VERSION))).toBe(true);
100
+ });
101
+
102
+ it('checkHookStatus returns installed for windsurf', () => {
103
+ installAllToolHooks();
104
+ const statuses = checkHookStatus();
105
+ const ws = statuses.find(s => s.tool === 'windsurf');
106
+ expect(ws?.status).toBe('installed');
107
+ });
108
+
109
+ it('checkHookStatus returns stale when old hook present', () => {
110
+ const hooksDir = path.join(realCodium, 'windsurf');
111
+ fs.mkdirSync(hooksDir, { recursive: true });
112
+ fs.writeFileSync(path.join(hooksDir, 'hooks.json'), JSON.stringify({
113
+ hooks: { pre_write_code: [{ command: 'node -e "/*omnitype-hook-v3*/.omnitype"' }] }
114
+ }));
115
+ const statuses = checkHookStatus();
116
+ const ws = statuses.find(s => s.tool === 'windsurf');
117
+ expect(ws?.status).toBe('stale');
118
+ });
119
+ });
120
+
121
+ // ── Gemini CLI installer ──────────────────────────────────────────────────────
122
+
123
+ describe('ToolHookInstallers — Gemini CLI', () => {
124
+ let scratchGemini: string;
125
+ const realGemini = path.join(HOME, '.gemini');
126
+ const backup = path.join(HOME, `.gemini-backup-${Date.now()}`);
127
+ let hadReal = false;
128
+
129
+ beforeEach(() => {
130
+ scratchGemini = makeScratchDir('gemini');
131
+ if (fs.existsSync(realGemini)) { fs.renameSync(realGemini, backup); hadReal = true; }
132
+ fs.renameSync(scratchGemini, realGemini);
133
+ });
134
+
135
+ afterEach(() => {
136
+ rmDir(realGemini);
137
+ if (hadReal) { fs.renameSync(backup, realGemini); hadReal = false; }
138
+ });
139
+
140
+ it('installs hook into gemini settings.json BeforeTool', () => {
141
+ installAllToolHooks();
142
+ const s = readJson(path.join(realGemini, 'settings.json'));
143
+ const cmds: string[] = (s?.BeforeTool ?? []).flatMap((e: any) => e?.hooks?.map((h: any) => h?.command ?? '') ?? []);
144
+ expect(cmds.some(c => c.includes(HOOK_VERSION))).toBe(true);
145
+ });
146
+
147
+ it('checkHookStatus returns installed for gemini-cli', () => {
148
+ installAllToolHooks();
149
+ const statuses = checkHookStatus();
150
+ const g = statuses.find(s => s.tool === 'gemini-cli');
151
+ expect(g?.status).toBe('installed');
152
+ });
153
+ });
154
+
155
+ // ── Codex installer ───────────────────────────────────────────────────────────
156
+
157
+ describe('ToolHookInstallers — Codex', () => {
158
+ let scratchCodex: string;
159
+ const realCodex = path.join(HOME, '.codex');
160
+ const backup = path.join(HOME, `.codex-backup-${Date.now()}`);
161
+ let hadReal = false;
162
+
163
+ beforeEach(() => {
164
+ scratchCodex = makeScratchDir('codex');
165
+ if (fs.existsSync(realCodex)) { fs.renameSync(realCodex, backup); hadReal = true; }
166
+ fs.renameSync(scratchCodex, realCodex);
167
+ });
168
+
169
+ afterEach(() => {
170
+ rmDir(realCodex);
171
+ if (hadReal) { fs.renameSync(backup, realCodex); hadReal = false; }
172
+ });
173
+
174
+ it('installs hook into codex hooks.json PreToolUse', () => {
175
+ installAllToolHooks();
176
+ const s = readJson(path.join(realCodex, 'hooks.json'));
177
+ const cmds: string[] = (s?.PreToolUse ?? []).map((h: any) => h?.command ?? '');
178
+ expect(cmds.some(c => c.includes(HOOK_VERSION))).toBe(true);
179
+ });
180
+
181
+ it('checkHookStatus returns installed for codex', () => {
182
+ installAllToolHooks();
183
+ const statuses = checkHookStatus();
184
+ const c = statuses.find(s => s.tool === 'codex');
185
+ expect(c?.status).toBe('installed');
186
+ });
187
+ });
188
+
189
+ // ── Cline installer ───────────────────────────────────────────────────────────
190
+
191
+ describe('ToolHookInstallers — Cline hook script content', () => {
192
+ it('Cline script contains version token', () => {
193
+ // The CLINE_HOOK_SCRIPT is embedded — verify via installing if dir exists
194
+ // otherwise just verify the constant is referenced in the module
195
+ const clineDir = path.join(HOME, 'Documents', 'Cline', 'Hooks');
196
+ if (!fs.existsSync(clineDir)) {
197
+ // Can't install, but we can verify the exported status
198
+ const statuses = checkHookStatus();
199
+ const c = statuses.find(s => s.tool === 'cline');
200
+ expect(c?.status).toBe('tool-absent');
201
+ return;
202
+ }
203
+ installAllToolHooks();
204
+ const script = fs.readFileSync(path.join(clineDir, 'PreToolUse'), 'utf8');
205
+ expect(script).toContain(HOOK_VERSION);
206
+ expect(script).toContain('extractModelFromJsonl');
207
+ expect(script).toContain('session.model_change');
208
+ });
209
+ });
210
+
211
+ // ── installAllToolHooks — silent on missing dirs ──────────────────────────────
212
+
213
+ describe('ToolHookInstallers — installAllToolHooks resilience', () => {
214
+ it('does not throw even when all tool dirs are absent', () => {
215
+ // All real tool dirs may or may not exist — the function is always silent
216
+ expect(() => installAllToolHooks()).not.toThrow();
217
+ });
218
+
219
+ it('checkHookStatus returns array with entries for every tracked tool', () => {
220
+ const statuses = checkHookStatus();
221
+ const tools = statuses.map(s => s.tool);
222
+ expect(tools).toContain('claude-code');
223
+ expect(tools).toContain('cursor');
224
+ expect(tools).toContain('windsurf');
225
+ expect(tools).toContain('codex');
226
+ expect(tools).toContain('cline');
227
+ expect(tools).toContain('gemini-cli');
228
+ });
229
+
230
+ it('every status entry has valid status value', () => {
231
+ const valid = new Set(['installed', 'stale', 'not-installed', 'tool-absent']);
232
+ const statuses = checkHookStatus();
233
+ for (const s of statuses) {
234
+ expect(valid.has(s.status)).toBe(true);
235
+ }
236
+ });
237
+ });
@@ -0,0 +1,201 @@
1
+ /**
2
+ * TranscriptScanner Tests
3
+ *
4
+ * Tests the JSONL model-extraction logic and directory-scanning behaviour.
5
+ * All file I/O uses tmp directories — real ~/.claude is never touched.
6
+ */
7
+
8
+ import * as fs from 'fs';
9
+ import * as os from 'os';
10
+ import * as path from 'path';
11
+
12
+ // We import and test the public API plus the cache invalidation helper.
13
+ import { scanTranscripts, invalidateTranscriptCache } from '../core/TranscriptScanner';
14
+
15
+ // ── Helpers ───────────────────────────────────────────────────────────────────
16
+
17
+ function makeTmp(): string {
18
+ return fs.mkdtempSync(path.join(os.tmpdir(), 'omnitype-ts-'));
19
+ }
20
+
21
+ function rmTmp(dir: string): void {
22
+ fs.rmSync(dir, { recursive: true, force: true });
23
+ }
24
+
25
+ /** Write a JSONL file with the given lines and return its path. */
26
+ function writeJsonl(dir: string, name: string, lines: object[]): string {
27
+ fs.mkdirSync(dir, { recursive: true });
28
+ const filePath = path.join(dir, name);
29
+ fs.writeFileSync(filePath, lines.map(l => JSON.stringify(l)).join('\n') + '\n', 'utf8');
30
+ return filePath;
31
+ }
32
+
33
+ // ── Tests ─────────────────────────────────────────────────────────────────────
34
+
35
+ describe('TranscriptScanner — extractJsonl (via scanTranscripts)', () => {
36
+ let tmp: string;
37
+ let origEnv: NodeJS.ProcessEnv;
38
+
39
+ beforeEach(() => {
40
+ tmp = makeTmp();
41
+ origEnv = { ...process.env };
42
+ invalidateTranscriptCache();
43
+ // Override CLAUDE_CONFIG_DIR so the scanner looks in our tmp dir
44
+ process.env.CLAUDE_CONFIG_DIR = tmp;
45
+ });
46
+
47
+ afterEach(() => {
48
+ process.env = origEnv;
49
+ invalidateTranscriptCache();
50
+ rmTmp(tmp);
51
+ });
52
+
53
+ it('reads model from message.model field in JSONL tail', () => {
54
+ const projectDir = path.join(tmp, 'projects', '-tmp-project');
55
+ writeJsonl(projectDir, 'session1.jsonl', [
56
+ { type: 'system', content: 'hello' },
57
+ { type: 'assistant', message: { model: 'claude-sonnet-4-5', role: 'assistant' }, content: '' },
58
+ ]);
59
+
60
+ const result = scanTranscripts();
61
+ expect(result).toBeDefined();
62
+ expect(result!.model).toBe('claude-sonnet-4-5');
63
+ });
64
+
65
+ it('reads model from session.model_change event', () => {
66
+ const projectDir = path.join(tmp, 'projects', '-tmp-model-change');
67
+ writeJsonl(projectDir, 'session2.jsonl', [
68
+ { type: 'system', content: 'start' },
69
+ { type: 'session.model_change', data: { newModel: 'claude-opus-4' } },
70
+ ]);
71
+
72
+ invalidateTranscriptCache();
73
+ const result = scanTranscripts();
74
+ expect(result).toBeDefined();
75
+ expect(result!.model).toBe('claude-opus-4');
76
+ });
77
+
78
+ it('skips <synthetic> model values', () => {
79
+ const projectDir = path.join(tmp, 'projects', '-tmp-synthetic');
80
+ writeJsonl(projectDir, 'session_synth.jsonl', [
81
+ { type: 'assistant', message: { model: '<synthetic>', role: 'assistant' }, content: '' },
82
+ ]);
83
+
84
+ invalidateTranscriptCache();
85
+ const result = scanTranscripts();
86
+ // <synthetic> should be skipped — no valid model found
87
+ if (result) {
88
+ expect(result.model).not.toBe('<synthetic>');
89
+ }
90
+ // Result is either undefined or from another tool dir — not the synthetic value
91
+ });
92
+
93
+ it('returns undefined for empty JSONL file', () => {
94
+ const projectDir = path.join(tmp, 'projects', '-tmp-empty');
95
+ const filePath = path.join(projectDir, 'empty.jsonl');
96
+ fs.mkdirSync(projectDir, { recursive: true });
97
+ fs.writeFileSync(filePath, '', 'utf8');
98
+
99
+ invalidateTranscriptCache();
100
+ const result = scanTranscripts();
101
+ expect(result).toBeUndefined();
102
+ });
103
+
104
+ it('returns undefined when no session files exist', () => {
105
+ // tmp has CLAUDE_CONFIG_DIR but no projects dir at all
106
+ invalidateTranscriptCache();
107
+ const result = scanTranscripts();
108
+ expect(result).toBeUndefined();
109
+ });
110
+
111
+ it('caches results and does not re-scan within TTL', () => {
112
+ const projectDir = path.join(tmp, 'projects', '-tmp-cache');
113
+ writeJsonl(projectDir, 'sess.jsonl', [
114
+ { type: 'assistant', message: { model: 'claude-haiku-3', role: 'assistant' }, content: '' },
115
+ ]);
116
+
117
+ invalidateTranscriptCache();
118
+ const first = scanTranscripts();
119
+ expect(first?.model).toBe('claude-haiku-3');
120
+
121
+ // Now add a new file with a different model — but cache should return stale result
122
+ const projectDir2 = path.join(tmp, 'projects', '-tmp-cache2');
123
+ writeJsonl(projectDir2, 'sess2.jsonl', [
124
+ { type: 'assistant', message: { model: 'claude-opus-4', role: 'assistant' }, content: '' },
125
+ ]);
126
+
127
+ const second = scanTranscripts(); // still within TTL
128
+ // Cache should return same result (the mtime of the new file might actually be newer
129
+ // in practice due to clock resolution — we verify the cache object is the same reference)
130
+ expect(second).toBe(first);
131
+ });
132
+
133
+ it('picks the most recently modified file when multiple sessions exist', async () => {
134
+ const projectDir = path.join(tmp, 'projects', '-tmp-multi');
135
+ fs.mkdirSync(projectDir, { recursive: true });
136
+
137
+ // Write older file first
138
+ const older = path.join(projectDir, 'old.jsonl');
139
+ fs.writeFileSync(older, JSON.stringify({ type: 'assistant', message: { model: 'claude-haiku-3' } }) + '\n');
140
+ // Set mtime to 1 second ago
141
+ const oldTime = new Date(Date.now() - 1000);
142
+ fs.utimesSync(older, oldTime, oldTime);
143
+
144
+ // Write newer file
145
+ const newer = path.join(projectDir, 'new.jsonl');
146
+ fs.writeFileSync(newer, JSON.stringify({ type: 'assistant', message: { model: 'claude-sonnet-4-5' } }) + '\n');
147
+
148
+ invalidateTranscriptCache();
149
+ const result = scanTranscripts();
150
+ expect(result?.model).toBe('claude-sonnet-4-5');
151
+ });
152
+
153
+ it('falls back to head scan when file is large and model_change is near start', () => {
154
+ const projectDir = path.join(tmp, 'projects', '-tmp-large');
155
+ fs.mkdirSync(projectDir, { recursive: true });
156
+ const filePath = path.join(projectDir, 'large.jsonl');
157
+
158
+ // First line: model_change event
159
+ const firstLine = JSON.stringify({ type: 'session.model_change', data: { newModel: 'claude-opus-4' } }) + '\n';
160
+ // Pad with >50KB of data so the tail read won't include the first line
161
+ const padding = JSON.stringify({ type: 'padding', data: 'x'.repeat(512) }) + '\n';
162
+ let content = firstLine;
163
+ // Add enough padding lines to exceed 51200 bytes
164
+ while (content.length < 55000) {
165
+ content += padding;
166
+ }
167
+ fs.writeFileSync(filePath, content, 'utf8');
168
+
169
+ invalidateTranscriptCache();
170
+ const result = scanTranscripts();
171
+ // The head fallback should find the model_change in the first line
172
+ expect(result).toBeDefined();
173
+ expect(result!.model).toBe('claude-opus-4');
174
+ });
175
+
176
+ it('scopes claude-code scanning to the given cwd', () => {
177
+ // Write sessions for two different projects
178
+ const cwdA = '/fake/project-a';
179
+ const cwdB = '/fake/project-b';
180
+ const keyA = cwdA.replace(/\//g, '-');
181
+ const keyB = cwdB.replace(/\//g, '-');
182
+
183
+ const dirA = path.join(tmp, 'projects', keyA);
184
+ const dirB = path.join(tmp, 'projects', keyB);
185
+
186
+ writeJsonl(dirA, 'sess.jsonl', [
187
+ { type: 'assistant', message: { model: 'claude-haiku-3' } },
188
+ ]);
189
+ writeJsonl(dirB, 'sess.jsonl', [
190
+ { type: 'assistant', message: { model: 'claude-opus-4' } },
191
+ ]);
192
+
193
+ invalidateTranscriptCache();
194
+ const resultA = scanTranscripts(cwdA);
195
+ invalidateTranscriptCache();
196
+ const resultB = scanTranscripts(cwdB);
197
+
198
+ expect(resultA?.model).toBe('claude-haiku-3');
199
+ expect(resultB?.model).toBe('claude-opus-4');
200
+ });
201
+ });
@@ -19,11 +19,9 @@ export const GLOBAL_OMNITYPE_DIR = path.join(os.homedir(), '.omnitype');
19
19
 
20
20
  // Version token embedded in every hook command.
21
21
  // Bump whenever hook logic changes so stale installs are replaced automatically.
22
- export const HOOK_VERSION = 'omnitype-hook-v4';
22
+ export const HOOK_VERSION = 'omnitype-hook-v5';
23
23
 
24
24
  // Shared sentinel-write snippet: resolves dir from process.cwd(), falls back to ~/.omnitype/.
25
- // `modelExpr` is a JS expression that evaluates to the model string (already extracted).
26
- // `tool` is the literal tool name string.
27
25
  const WRITE_SENTINEL = (tool: string) =>
28
26
  `const fs=require('fs'),p=require('path'),os=require('os');` +
29
27
  `const dir=p.join(process.cwd(),'.omnitype');` +
@@ -34,33 +32,54 @@ const WRITE_SENTINEL = (tool: string) =>
34
32
  `fs.writeFileSync(p.join(dir,'active-model.json'),payload);` +
35
33
  `fs.writeFileSync(p.join(fbDir,'active-model.json'),payload);`;
36
34
 
37
- // Generic hook: reads model from stdin JSON, writes sentinel to project root + global fallback.
38
- function buildHookCommand(tool: string, modelField: string): string {
35
+ // Extracts model from a JSONL transcript by reading the tail (last 50KB).
36
+ // Looks for message.model on assistant turns, or session.model_change events.
37
+ // Same approach as git-ai's extract_model_from_jsonl_tail.
38
+ const EXTRACT_MODEL_FROM_JSONL =
39
+ `function extractModelFromJsonl(tp){` +
40
+ `try{` +
41
+ `const _fs=require('fs');` +
42
+ `const stat=_fs.statSync(tp);` +
43
+ `const readSize=Math.min(51200,stat.size);` +
44
+ `const buf=Buffer.alloc(readSize);` +
45
+ `const fd=_fs.openSync(tp,'r');` +
46
+ `_fs.readSync(fd,buf,0,readSize,stat.size-readSize);` +
47
+ `_fs.closeSync(fd);` +
48
+ `const lines=buf.toString('utf8').split('\\n').reverse();` +
49
+ `for(const line of lines){` +
50
+ `if(!line.trim())continue;` +
51
+ `try{const o=JSON.parse(line);` +
52
+ `if(o.type==='session.model_change'&&o.data&&o.data.newModel)return o.data.newModel;` +
53
+ `const m=o?.message?.model||o?.model;` +
54
+ `if(m&&m!=='<synthetic>')return m;` +
55
+ `}catch{}` +
56
+ `}` +
57
+ `}catch{}` +
58
+ `return null;` +
59
+ `}`;
60
+
61
+ // Universal hook: works for every tool without per-tool customization.
62
+ // Resolution order:
63
+ // 1. Direct payload fields (covers Cursor, Windsurf, Codex, Cline, Gemini, etc.)
64
+ // 2. transcript_path JSONL tail (covers Claude Code, Gemini — same as git-ai)
65
+ // 3. Env vars as last resort
66
+ function buildHookCommand(tool: string): string {
39
67
  return (
40
- `node -e "/*${HOOK_VERSION}*/let b='';process.stdin.on('data',c=>b+=c);` +
41
- `process.stdin.on('end',()=>{` +
68
+ `node -e "/*${HOOK_VERSION}*/` +
69
+ EXTRACT_MODEL_FROM_JSONL +
70
+ `let b='';process.stdin.on('data',c=>b+=c);process.stdin.on('end',()=>{` +
42
71
  `try{const j=JSON.parse(b);` +
43
- `let m=j['${modelField}']||j.model;` +
44
- `if(!m)return;` +
45
72
  `let file;try{file=j?.tool_input?.path||j?.tool_input?.file_path||j?.toolInput?.path;}catch{}` +
73
+ `let m=j.model||j.model_name||j.modelName||j.modelID||j?.data?.model||null;` +
74
+ `if(!m&&j.transcript_path)m=extractModelFromJsonl(j.transcript_path);` +
75
+ `if(!m)m=process.env.CLAUDE_MODEL||process.env.ANTHROPIC_MODEL||null;` +
76
+ `if(!m)return;` +
46
77
  WRITE_SENTINEL(tool) +
47
78
  `}catch{}})"`
48
79
  );
49
80
  }
50
81
 
51
- // Claude Code hook: reads model from stdin first, then env, then settings.json.
52
- const CLAUDE_HOOK_CMD =
53
- `node -e "/*${HOOK_VERSION}*/let b='';process.stdin.on('data',c=>b+=c);process.stdin.on('end',()=>{` +
54
- `try{` +
55
- `let m,file;` +
56
- `try{const j=JSON.parse(b);m=j.model;file=j?.tool_input?.path||j?.tool_input?.file_path||j?.toolInput?.path;}catch{}` +
57
- `if(!m)m=process.env.CLAUDE_MODEL||process.env.ANTHROPIC_MODEL;` +
58
- `if(!m){try{const _fs=require('fs'),_p=require('path'),_os=require('os');` +
59
- `const s=JSON.parse(_fs.readFileSync(_p.join(_os.homedir(),'.claude','settings.json'),'utf8'));` +
60
- `m=s.model||s.defaultModel;}catch{}}` +
61
- `if(!m)return;` +
62
- WRITE_SENTINEL('claude-code') +
63
- `}catch{}})"`;
82
+ const CLAUDE_HOOK_CMD = buildHookCommand('claude-code');
64
83
  function readJson(filePath: string): Record<string, any> {
65
84
  try { return JSON.parse(fs.readFileSync(filePath, 'utf8')); } catch { return {}; }
66
85
  }
@@ -110,7 +129,7 @@ function installClaudeHooks(): void {
110
129
  // ── Cursor ────────────────────────────────────────────────────────────────────
111
130
 
112
131
  const CURSOR_HOOKS_PATH = path.join(os.homedir(), '.cursor', 'hooks.json');
113
- const CURSOR_CMD = buildHookCommand('cursor', 'model');
132
+ const CURSOR_CMD = buildHookCommand('cursor');
114
133
 
115
134
  function installCursorHooks(): void {
116
135
  if (!fs.existsSync(path.join(os.homedir(), '.cursor'))) return;
@@ -135,7 +154,7 @@ const WINDSURF_HOOK_PATHS = [
135
154
  path.join(os.homedir(), '.codeium', 'hooks.json'),
136
155
  ];
137
156
  const WINDSURF_EVENTS = ['pre_write_code', 'post_write_code', 'pre_run_command', 'post_run_command'];
138
- const WINDSURF_CMD = buildHookCommand('windsurf', 'model_name');
157
+ const WINDSURF_CMD = buildHookCommand('windsurf');
139
158
 
140
159
  function installWindsurfHooks(): void {
141
160
  if (!fs.existsSync(path.join(os.homedir(), '.codeium'))) return;
@@ -158,7 +177,7 @@ function installWindsurfHooks(): void {
158
177
  // ── Codex ─────────────────────────────────────────────────────────────────────
159
178
 
160
179
  const CODEX_HOOKS_PATH = path.join(os.homedir(), '.codex', 'hooks.json');
161
- const CODEX_CMD = buildHookCommand('codex', 'model');
180
+ const CODEX_CMD = buildHookCommand('codex');
162
181
 
163
182
  function installCodexHooks(): void {
164
183
  if (!fs.existsSync(path.join(os.homedir(), '.codex'))) return;
@@ -183,13 +202,37 @@ const CLINE_HOOKS_DIR = path.join(os.homedir(), 'Documents', 'Cline', 'Hooks');
183
202
  const CLINE_HOOK_SCRIPT = `#!/usr/bin/env node
184
203
  // ${HOOK_VERSION}
185
204
  const FILE_WRITE_TOOLS = new Set(['write_to_file','apply_diff','insert_content','search_and_replace']);
205
+ function extractModelFromJsonl(tp) {
206
+ try {
207
+ const fs = require('fs');
208
+ const stat = fs.statSync(tp);
209
+ const readSize = Math.min(51200, stat.size);
210
+ const buf = Buffer.alloc(readSize);
211
+ const fd = fs.openSync(tp, 'r');
212
+ fs.readSync(fd, buf, 0, readSize, stat.size - readSize);
213
+ fs.closeSync(fd);
214
+ const lines = buf.toString('utf8').split('\\n').reverse();
215
+ for (const line of lines) {
216
+ if (!line.trim()) continue;
217
+ try {
218
+ const o = JSON.parse(line);
219
+ if (o.type === 'session.model_change' && o.data?.newModel) return o.data.newModel;
220
+ const m = o?.message?.model || o?.model;
221
+ if (m && m !== '<synthetic>') return m;
222
+ } catch {}
223
+ }
224
+ } catch {}
225
+ return null;
226
+ }
186
227
  let buf = '';
187
228
  process.stdin.on('data', c => buf += c);
188
229
  process.stdin.on('end', () => {
189
230
  try {
190
231
  const j = JSON.parse(buf);
191
232
  if (!FILE_WRITE_TOOLS.has(j.toolName)) return;
192
- const m = j.model || j.preToolUse?.model || '';
233
+ const m = j.model || j.model_name || j.modelName || j.modelID || j?.data?.model
234
+ || (j.transcript_path ? extractModelFromJsonl(j.transcript_path) : null)
235
+ || j.preToolUse?.model || '';
193
236
  const file = j.toolInput?.path || j.toolInput?.file_path || j.tool_input?.path || undefined;
194
237
  const fs = require('fs'), p = require('path'), os = require('os');
195
238
  const dir = p.join(process.cwd(), '.omnitype');
@@ -218,7 +261,7 @@ function installClineHooks(): void {
218
261
  // ~/.gemini/settings.json — BeforeTool / AfterTool with nested hooks array
219
262
 
220
263
  const GEMINI_SETTINGS_PATH = path.join(os.homedir(), '.gemini', 'settings.json');
221
- const GEMINI_CMD = buildHookCommand('gemini-cli', 'model');
264
+ const GEMINI_CMD = buildHookCommand('gemini-cli');
222
265
  const GEMINI_HOOK_ENTRY = { matcher: '*', hooks: [{ type: 'command', command: GEMINI_CMD }] };
223
266
 
224
267
  function installGeminiHooks(): void {
@@ -239,7 +282,7 @@ function installGeminiHooks(): void {
239
282
  // ~/.factory/settings.json — PreToolUse with nested hooks array
240
283
 
241
284
  const DROID_SETTINGS_PATH = path.join(os.homedir(), '.factory', 'settings.json');
242
- const DROID_CMD = buildHookCommand('droid', 'model');
285
+ const DROID_CMD = buildHookCommand('droid');
243
286
  const DROID_HOOK_ENTRY = { matcher: '*', hooks: [{ type: 'command', command: DROID_CMD }] };
244
287
 
245
288
  function installDroidHooks(): void {
@@ -256,7 +299,7 @@ function installDroidHooks(): void {
256
299
  // ~/.firebender/hooks.json — preToolUse / postToolUse flat command arrays
257
300
 
258
301
  const FIREBENDER_HOOKS_PATH = path.join(os.homedir(), '.firebender', 'hooks.json');
259
- const FIREBENDER_CMD = buildHookCommand('firebender', 'model');
302
+ const FIREBENDER_CMD = buildHookCommand('firebender');
260
303
 
261
304
  function installFirebenderHooks(): void {
262
305
  if (!fs.existsSync(path.join(os.homedir(), '.firebender'))) return;
@@ -393,7 +436,7 @@ function installPiPlugin(): void {
393
436
  // PreToolUse / PostToolUse arrays — same shape as Claude Code.
394
437
 
395
438
  const COPILOT_HOOKS_PATH = path.join(os.homedir(), '.copilot', 'hooks', 'omnitype.json');
396
- const COPILOT_CMD = buildHookCommand('copilot', 'model');
439
+ const COPILOT_CMD = buildHookCommand('copilot');
397
440
 
398
441
  function installCopilotHooks(): void {
399
442
  // Require either ~/.copilot or ~/.vscode or VS Code settings to exist