forked from op7418/CodePilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.ts
More file actions
1151 lines (1028 loc) · 36.9 KB
/
main.ts
File metadata and controls
1151 lines (1028 loc) · 36.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { app, BrowserWindow, nativeImage, dialog, session, utilityProcess, ipcMain, shell, Tray, Menu } from 'electron';
import path from 'path';
import { execFileSync, spawn, ChildProcess } from 'child_process';
import fs from 'fs';
import net from 'net';
import os from 'os';
import { TerminalManager } from './terminal-manager';
/**
* Return a copy of process.env without __NEXT_PRIVATE_* variables.
*
* The bundled Next.js standalone server sets these at runtime
* (e.g. __NEXT_PRIVATE_STANDALONE_CONFIG, __NEXT_PRIVATE_ORIGIN).
* If they leak into child-process environments they cause every
* other Next.js project on the machine to skip its own config
* loading, breaking builds and dev servers.
*/
function sanitizedProcessEnv(): Record<string, string> {
const env: Record<string, string> = {};
for (const [key, value] of Object.entries(process.env)) {
if (!key.startsWith('__NEXT_PRIVATE_') && value !== undefined) {
env[key] = value;
}
}
return env;
}
let mainWindow: BrowserWindow | null = null;
let serverProcess: Electron.UtilityProcess | null = null;
let serverPort: number | null = null;
let serverErrors: string[] = [];
let serverExited = false;
let serverExitCode: number | null = null;
let userShellEnv: Record<string, string> = {};
let isQuitting = false;
let tray: Tray | null = null;
// --- Install orchestrator ---
interface InstallStep {
id: string;
label: string;
status: 'pending' | 'running' | 'success' | 'failed' | 'skipped';
error?: string;
}
interface InstallState {
status: 'idle' | 'running' | 'success' | 'failed' | 'cancelled';
currentStep: string | null;
steps: InstallStep[];
logs: string[];
}
let installState: InstallState = {
status: 'idle',
currentStep: null,
steps: [],
logs: [],
};
let installProcess: ChildProcess | null = null;
const terminalManager = new TerminalManager();
const isDev = !app.isPackaged;
/**
* Gracefully shut down the server process.
* Sends kill() (SIGTERM) first, waits up to 3s for exit,
* then force-kills via process.kill(pid, SIGKILL) as fallback.
*/
function killServer(): Promise<void> {
return new Promise((resolve) => {
if (!serverProcess) {
resolve();
return;
}
const pid = serverProcess.pid;
const timeout = setTimeout(() => {
// Force kill — on Windows use taskkill to kill the entire process tree
if (pid) {
try {
if (process.platform === 'win32') {
spawn('taskkill', ['/T', '/F', '/PID', String(pid)], { stdio: 'ignore' });
} else {
process.kill(pid, 'SIGKILL');
}
} catch { /* already dead */ }
}
serverProcess = null;
resolve();
}, 3000);
serverProcess.on('exit', () => {
clearTimeout(timeout);
serverProcess = null;
resolve();
});
// On Windows, SIGTERM is not supported — use taskkill to kill the tree
if (process.platform === 'win32' && pid) {
spawn('taskkill', ['/T', '/F', '/PID', String(pid)], { stdio: 'ignore' });
} else {
serverProcess.kill();
}
});
}
/**
* Check if the remote bridge is currently active by querying the local API.
*/
async function isBridgeActive(): Promise<boolean> {
if (!serverPort) return false;
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const http = require('http');
return await new Promise<boolean>((resolve) => {
const req = http.get(`http://127.0.0.1:${serverPort}/api/bridge`, (res: { statusCode?: number; on: (event: string, cb: (data?: Buffer) => void) => void }) => {
let body = '';
res.on('data', (chunk: Buffer) => { body += chunk.toString(); });
res.on('end', () => {
try {
const data = JSON.parse(body);
resolve(data.running === true);
} catch {
resolve(false);
}
});
});
req.on('error', () => resolve(false));
req.setTimeout(2000, () => { req.destroy(); resolve(false); });
});
} catch {
return false;
}
}
/**
* Stop the remote bridge by posting to the local API.
*/
async function stopBridge(): Promise<void> {
if (!serverPort) return;
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const http = require('http');
await new Promise<void>((resolve) => {
const postData = JSON.stringify({ action: 'stop' });
const req = http.request({
hostname: '127.0.0.1',
port: serverPort,
path: '/api/bridge',
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(postData),
},
}, () => { resolve(); });
req.on('error', () => resolve());
req.setTimeout(3000, () => { req.destroy(); resolve(); });
req.write(postData);
req.end();
});
} catch {
// ignore — bridge may already be stopped
}
}
/**
* Create a system tray icon for background bridge mode.
* Called when all windows are closed but the bridge is still active.
*/
function createTray(): void {
if (tray) return;
const iconPath = getIconPath();
const trayIcon = nativeImage.createFromPath(iconPath).resize({ width: 16, height: 16 });
tray = new Tray(trayIcon);
tray.setToolTip('CodePilot — Bridge Active');
const contextMenu = Menu.buildFromTemplate([
{
label: 'Open CodePilot',
click: () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow(`http://127.0.0.1:${serverPort || 3000}`);
} else {
mainWindow?.focus();
}
},
},
{ type: 'separator' },
{
label: 'Bridge Status: Active',
enabled: false,
},
{ type: 'separator' },
{
label: 'Stop Bridge & Quit',
click: async () => {
await stopBridge();
destroyTray();
await killServer();
app.quit();
},
},
]);
tray.setContextMenu(contextMenu);
// Double-click on tray icon opens the window (macOS/Windows)
tray.on('double-click', () => {
if (BrowserWindow.getAllWindows().length === 0) {
createWindow(`http://127.0.0.1:${serverPort || 3000}`);
} else {
mainWindow?.focus();
}
});
}
function destroyTray(): void {
if (tray) {
tray.destroy();
tray = null;
}
}
/**
* Verify that better_sqlite3.node in standalone resources is compatible
* with this Electron runtime's ABI. If it was built for a different
* Node.js ABI (e.g. system Node v22 ABI 127 vs Electron's ABI 143),
* show a clear error instead of a cryptic MODULE_NOT_FOUND crash.
*/
function checkNativeModuleABI(): void {
if (isDev) return; // Skip in dev mode
const standaloneDir = path.join(process.resourcesPath, 'standalone');
// Find better_sqlite3.node recursively
function findNodeFile(dir: string): string | null {
if (!fs.existsSync(dir)) return null;
const entries = fs.readdirSync(dir, { withFileTypes: true });
for (const entry of entries) {
const fullPath = path.join(dir, entry.name);
if (entry.isDirectory()) {
const found = findNodeFile(fullPath);
if (found) return found;
} else if (entry.name === 'better_sqlite3.node') {
return fullPath;
}
}
return null;
}
const nodeFile = findNodeFile(path.join(standaloneDir, 'node_modules'));
if (!nodeFile) {
console.warn('[ABI check] better_sqlite3.node not found in standalone resources');
return;
}
try {
// Attempt to load the native module to verify ABI compatibility
process.dlopen({ exports: {} } as NodeModule, nodeFile);
console.log(`[ABI check] better_sqlite3.node ABI is compatible (${nodeFile})`);
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
if (msg.includes('NODE_MODULE_VERSION')) {
console.error(`[ABI check] ABI mismatch detected: ${msg}`);
dialog.showErrorBox(
'CodePilot - Native Module ABI Mismatch',
`The bundled better-sqlite3 native module was compiled for a different Node.js version.\n\n` +
`${msg}\n\n` +
`This usually means the build process did not correctly recompile native modules for Electron.\n` +
`Please rebuild the application or report this issue.`
);
app.quit();
} else {
// Other load errors (missing dependencies, etc.) -- log but don't block
console.warn(`[ABI check] Could not verify better_sqlite3.node: ${msg}`);
}
}
}
/**
* Read the user's full shell environment by running a login shell.
* When Electron is launched from Dock/Finder (macOS) or desktop launcher
* (Linux), process.env is very limited and won't include vars from
* .zshrc/.bashrc (e.g. API keys, nvm PATH).
*/
function loadUserShellEnv(): Record<string, string> {
// Windows GUI apps inherit the full user environment
if (process.platform === 'win32') {
return {};
}
try {
const shell = process.env.SHELL || '/bin/zsh';
const result = execFileSync(shell, ['-ilc', 'env'], {
timeout: 5000,
encoding: 'utf-8',
stdio: ['pipe', 'pipe', 'pipe'],
});
const env: Record<string, string> = {};
for (const line of result.split('\n')) {
const idx = line.indexOf('=');
if (idx > 0) {
const key = line.slice(0, idx);
const value = line.slice(idx + 1);
env[key] = value;
}
}
console.log(`Loaded ${Object.keys(env).length} env vars from user shell`);
return env;
} catch (err) {
console.warn('Failed to load user shell env:', err);
return {};
}
}
/**
* Build an expanded PATH that includes common locations for node, npm globals,
* claude, nvm, homebrew, etc. Shared by the server launcher and install orchestrator.
*/
function getExpandedShellPath(): string {
const home = os.homedir();
const shellPath = userShellEnv.PATH || process.env.PATH || '';
const sep = path.delimiter;
if (process.platform === 'win32') {
const appData = process.env.APPDATA || path.join(home, 'AppData', 'Roaming');
const localAppData = process.env.LOCALAPPDATA || path.join(home, 'AppData', 'Local');
const winExtra = [
path.join(appData, 'npm'),
path.join(localAppData, 'npm'),
path.join(home, '.npm-global', 'bin'),
path.join(home, '.local', 'bin'),
path.join(home, '.claude', 'bin'),
];
const allParts = [shellPath, ...winExtra].join(sep).split(sep).filter(Boolean);
return [...new Set(allParts)].join(sep);
} else {
const basePath = `/usr/local/bin:/opt/homebrew/bin:/usr/bin:/bin`;
const raw = `${basePath}:${home}/.npm-global/bin:${home}/.local/bin:${home}/.claude/bin:${shellPath}`;
const allParts = raw.split(':').filter(Boolean);
return [...new Set(allParts)].join(':');
}
}
function getPort(): Promise<number> {
return new Promise((resolve, reject) => {
const server = net.createServer();
server.unref();
server.on('error', reject);
server.listen(0, '127.0.0.1', () => {
const addr = server.address();
if (addr && typeof addr === 'object') {
const port = addr.port;
server.close(() => resolve(port));
} else {
server.close(() => reject(new Error('Failed to get port')));
}
});
});
}
async function waitForServer(port: number, timeout = 30000): Promise<void> {
const start = Date.now();
let lastError = '';
while (Date.now() - start < timeout) {
// If the server process already exited, fail fast
if (serverExited) {
throw new Error(
`Server process exited with code ${serverExitCode}.\n\n${serverErrors.join('\n')}`
);
}
try {
await new Promise<void>((resolve, reject) => {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const http = require('http');
// Use options object with family:4 to force IPv4 — avoids Windows
// IPv6 resolution issues where 127.0.0.1 may fail to connect.
const req = http.get({
hostname: '127.0.0.1',
port,
path: '/api/health',
family: 4,
timeout: 2000,
}, (res: { statusCode?: number }) => {
if (res.statusCode === 200) resolve();
else reject(new Error(`Status ${res.statusCode}`));
});
req.on('error', (err: Error) => reject(err));
req.on('timeout', () => {
req.destroy();
reject(new Error('request timeout'));
});
});
return;
} catch (err) {
lastError = err instanceof Error ? err.message : String(err);
await new Promise(r => setTimeout(r, 300));
}
}
throw new Error(
`Server startup timeout after ${timeout / 1000}s.\n\nLast health-check error: ${lastError}\n\n${serverErrors.length > 0 ? 'Server output:\n' + serverErrors.slice(-10).join('\n') : 'No server output captured.'}`
);
}
function startServer(port: number): Electron.UtilityProcess {
const standaloneDir = path.join(process.resourcesPath, 'standalone');
const serverPath = path.join(standaloneDir, 'server.js');
console.log(`Server path: ${serverPath}`);
console.log(`Standalone dir: ${standaloneDir}`);
serverErrors = [];
serverExited = false;
serverExitCode = null;
const home = os.homedir();
const constructedPath = getExpandedShellPath();
const env: Record<string, string> = {
...userShellEnv,
...sanitizedProcessEnv(),
// Ensure user shell env vars override (especially API keys)
...userShellEnv,
PORT: String(port),
HOSTNAME: '127.0.0.1',
CLAUDE_GUI_DATA_DIR: path.join(home, '.codepilot'),
HOME: home,
USERPROFILE: home,
PATH: constructedPath,
};
// Use Electron's utilityProcess to run the server in a child process
// without spawning a separate Dock icon on macOS.
const child = utilityProcess.fork(serverPath, [], {
env,
cwd: standaloneDir,
stdio: 'pipe',
serviceName: 'codepilot-server',
});
child.stdout?.on('data', (data: Buffer) => {
const msg = data.toString().trim();
console.log(`[server] ${msg}`);
serverErrors.push(msg);
});
child.stderr?.on('data', (data: Buffer) => {
const msg = data.toString().trim();
console.error(`[server:err] ${msg}`);
serverErrors.push(msg);
});
child.on('exit', (code) => {
console.log(`Server process exited with code ${code}`);
serverExited = true;
serverExitCode = code;
serverProcess = null;
});
return child;
}
function getIconPath(): string {
if (isDev) {
return path.join(process.cwd(), 'build', 'icon.png');
}
if (process.platform === 'win32') {
return path.join(process.resourcesPath, 'icon.ico');
}
if (process.platform === 'linux') {
return path.join(process.resourcesPath, 'icon.png');
}
return path.join(process.resourcesPath, 'icon.icns');
}
/** Inline loading HTML shown while the server starts up */
const LOADING_HTML = `data:text/html;charset=utf-8,${encodeURIComponent(`<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
height: 100vh; display: flex; align-items: center; justify-content: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0a0a0a; color: #a0a0a0;
-webkit-app-region: drag;
}
.container { text-align: center; }
.spinner {
width: 28px; height: 28px; margin: 0 auto 14px;
border: 2.5px solid rgba(255,255,255,0.1);
border-top-color: rgba(255,255,255,0.5);
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
p { font-size: 13px; opacity: 0.7; }
</style>
</head>
<body>
<div class="container">
<div class="spinner"></div>
<p>Starting CodePilot...</p>
</div>
</body>
</html>`)}`;
function createWindow(url?: string) {
const windowOptions: Electron.BrowserWindowConstructorOptions = {
width: 1280,
height: 860,
minWidth: 800,
minHeight: 600,
icon: getIconPath(),
webPreferences: {
preload: path.join(__dirname, 'preload.js'),
contextIsolation: true,
nodeIntegration: false,
},
};
if (process.platform === 'darwin') {
windowOptions.titleBarStyle = 'hiddenInset';
} else if (process.platform === 'win32') {
windowOptions.titleBarStyle = 'hidden';
windowOptions.titleBarOverlay = {
color: '#00000000',
symbolColor: '#888888',
height: 44,
};
}
mainWindow = new BrowserWindow(windowOptions);
mainWindow.loadURL(url || LOADING_HTML);
if (isDev) {
mainWindow.webContents.openDevTools();
}
mainWindow.on('closed', () => {
mainWindow = null;
});
}
app.whenReady().then(async () => {
// Load user's full shell environment (API keys, PATH, etc.)
userShellEnv = loadUserShellEnv();
// Verify native module ABI compatibility before starting the server
checkNativeModuleABI();
// Clear cache on version upgrade
const currentVersion = app.getVersion();
const versionFilePath = path.join(app.getPath('userData'), 'last-version.txt');
try {
const lastVersion = fs.existsSync(versionFilePath)
? fs.readFileSync(versionFilePath, 'utf-8').trim()
: '';
if (lastVersion && lastVersion !== currentVersion) {
console.log(`Version changed from ${lastVersion} to ${currentVersion}, clearing cache...`);
await session.defaultSession.clearCache();
await session.defaultSession.clearStorageData({
storages: ['cachestorage', 'serviceworkers'],
});
console.log('Cache cleared successfully');
}
fs.writeFileSync(versionFilePath, currentVersion, 'utf-8');
} catch (err) {
console.warn('Failed to check/clear version cache:', err);
}
// Set macOS Dock icon
if (process.platform === 'darwin' && app.dock) {
const iconPath = getIconPath();
app.dock.setIcon(nativeImage.createFromPath(iconPath));
}
// --- Install wizard IPC handlers ---
ipcMain.handle('install:check-prerequisites', async () => {
const expandedPath = getExpandedShellPath();
const execEnv = { ...sanitizedProcessEnv(), ...userShellEnv, PATH: expandedPath };
// Candidate paths — native first, then bun, then homebrew, then npm
const home = os.homedir();
const candidatePaths = process.platform === 'win32'
? [
path.join(home, '.local', 'bin', 'claude.exe'),
path.join(home, '.local', 'bin', 'claude.cmd'),
path.join(home, '.claude', 'bin', 'claude.exe'),
path.join(home, '.claude', 'bin', 'claude.cmd'),
path.join(home, '.bun', 'bin', 'claude.exe'),
path.join(home, '.bun', 'bin', 'claude.cmd'),
path.join(process.env.APPDATA || '', 'npm', 'claude.cmd'),
path.join(process.env.LOCALAPPDATA || '', 'npm', 'claude.cmd'),
].filter(p => p && !p.startsWith(path.sep))
: [
path.join(home, '.local', 'bin', 'claude'),
path.join(home, '.claude', 'bin', 'claude'),
path.join(home, '.bun', 'bin', 'claude'),
'/opt/homebrew/bin/claude',
'/usr/local/bin/claude',
path.join(home, '.npm-global', 'bin', 'claude'),
];
function classifyPath(p: string): 'native' | 'homebrew' | 'npm' | 'bun' | 'unknown' {
const n = p.replace(/\\/g, '/');
if (n.includes('/.local/bin/') || n.includes('/.claude/bin/')) return 'native';
if (n.includes('/.bun/bin/') || n.includes('/.bun/install/')) return 'bun';
if (n.includes('/homebrew/') || n.includes('/Cellar/')) return 'homebrew';
if (n.includes('/npm')) return 'npm';
if (n === '/usr/local/bin/claude') {
try {
const real = fs.realpathSync(p);
if (real.includes('node_modules')) return 'npm';
if (real.includes('homebrew') || real.includes('Cellar')) return 'homebrew';
if (real.includes('.bun')) return 'bun';
} catch { /* ignore */ }
return 'unknown';
}
return 'unknown';
}
interface Detection { path: string; version: string | null; type: string }
const allInstalls: Detection[] = [];
const seenReal = new Set<string>();
for (const p of candidatePaths) {
try {
let realPath: string;
try { realPath = fs.realpathSync(p); } catch { realPath = p; }
if (seenReal.has(realPath)) continue;
const isWin = process.platform === 'win32';
const shell = isWin && /\.(cmd|bat)$/i.test(p);
const result = execFileSync(p, ['--version'], {
timeout: 5000, encoding: 'utf-8', env: execEnv, shell, stdio: 'pipe',
});
seenReal.add(realPath);
allInstalls.push({ path: p, version: result.trim() || null, type: classifyPath(p) });
} catch {
// not at this path
}
}
// Also scan PATH via which/where to catch bun, custom, or other non-standard installs
try {
const isWinPlatform = process.platform === 'win32';
const cmd = isWinPlatform ? 'where' : '/usr/bin/which';
const args = isWinPlatform ? ['claude'] : ['-a', 'claude']; // -a = show ALL matches
const whichResult = execFileSync(cmd, args, {
timeout: 3000, encoding: 'utf-8', env: execEnv,
shell: isWinPlatform, stdio: 'pipe',
});
for (const line of whichResult.trim().split(/\r?\n/)) {
const candidate = line.trim();
if (!candidate) continue;
try {
let realPath: string;
try { realPath = fs.realpathSync(candidate); } catch { realPath = candidate; }
if (seenReal.has(realPath)) continue;
const shell = isWinPlatform && /\.(cmd|bat)$/i.test(candidate);
const result = execFileSync(candidate, ['--version'], {
timeout: 5000, encoding: 'utf-8', env: execEnv, shell, stdio: 'pipe',
});
seenReal.add(realPath);
allInstalls.push({ path: candidate, version: result.trim() || null, type: classifyPath(candidate) });
} catch {
// invalid binary at this path
}
}
} catch {
// which/where failed
}
const primary = allInstalls[0];
const hasClaude = !!primary;
// On Windows, check for Git Bash (bash.exe) — this is what the SDK actually uses at runtime.
// Must match the detection strategy in platform.ts:findGitBash() to avoid false negatives.
let hasGit = true; // default true for non-Windows
if (process.platform === 'win32') {
hasGit = false;
// 1. User-specified env var
const envBash = process.env.CLAUDE_CODE_GIT_BASH_PATH || userShellEnv.CLAUDE_CODE_GIT_BASH_PATH;
if (envBash && fs.existsSync(envBash)) {
hasGit = true;
}
// 2. Common installation paths
if (!hasGit) {
const commonPaths = [
'C:\\Program Files\\Git\\bin\\bash.exe',
'C:\\Program Files (x86)\\Git\\bin\\bash.exe',
];
if (commonPaths.some(p => fs.existsSync(p))) {
hasGit = true;
}
}
// 3. Derive from `where git`
if (!hasGit) {
try {
const whereResult = execFileSync('where', ['git'], {
timeout: 3000, encoding: 'utf-8', shell: true, stdio: 'pipe',
});
for (const line of whereResult.trim().split(/\r?\n/)) {
const gitExe = line.trim();
if (!gitExe) continue;
const gitDir = path.dirname(path.dirname(gitExe));
const bashPath = path.join(gitDir, 'bin', 'bash.exe');
if (fs.existsSync(bashPath)) {
hasGit = true;
break;
}
}
} catch {
// where git failed
}
}
}
return {
hasClaude,
claudeVersion: primary?.version,
claudePath: primary?.path,
claudeInstallType: primary?.type,
otherInstalls: allInstalls.slice(1),
hasGit,
platform: process.platform,
};
});
ipcMain.handle('install:start', () => {
if (installState.status === 'running') {
throw new Error('Installation is already running');
}
// Reset state — native installer needs no Node.js prerequisite
const steps: InstallStep[] = [
{ id: 'install-claude', label: 'Installing Claude Code (native)', status: 'pending' },
{ id: 'verify', label: 'Verifying installation', status: 'pending' },
];
installState = {
status: 'running',
currentStep: null,
steps,
logs: [],
};
const expandedPath = getExpandedShellPath();
const home = os.homedir();
const execEnv: Record<string, string> = {
...userShellEnv,
...sanitizedProcessEnv(),
...userShellEnv,
PATH: expandedPath,
};
function sendProgress() {
mainWindow?.webContents.send('install:progress', installState);
}
function setStep(id: string, status: InstallStep['status'], error?: string) {
const step = installState.steps.find(s => s.id === id);
if (step) {
step.status = status;
step.error = error;
}
installState.currentStep = id;
sendProgress();
}
function addLog(line: string) {
installState.logs.push(line);
sendProgress();
}
// Run the installation sequence asynchronously
(async () => {
try {
const isWin = process.platform === 'win32';
// Step 1: Install Claude Code via native installer
setStep('install-claude', 'running');
if (isWin) {
// Windows: download and run install.cmd
addLog('Downloading native installer for Windows...');
const installSuccess = await new Promise<boolean>((resolve) => {
// Download install.cmd to temp, then execute it
const tmpDir = os.tmpdir();
const installCmd = path.join(tmpDir, 'claude-install.cmd');
const downloadChild = spawn('curl', ['-fsSL', 'https://claude.ai/install.cmd', '-o', installCmd], {
env: execEnv,
shell: true,
stdio: ['ignore', 'pipe', 'pipe'],
});
installProcess = downloadChild;
downloadChild.stderr?.on('data', (data: Buffer) => {
for (const line of data.toString().split('\n').filter(Boolean)) addLog(line);
});
downloadChild.on('close', (dlCode) => {
if (dlCode !== 0) {
addLog('Failed to download installer.');
resolve(false);
return;
}
addLog('Running installer...');
const child = spawn(installCmd, [], {
env: execEnv,
shell: true,
stdio: ['ignore', 'pipe', 'pipe'],
});
installProcess = child;
child.stdout?.on('data', (data: Buffer) => {
for (const line of data.toString().split('\n').filter(Boolean)) addLog(line);
});
child.stderr?.on('data', (data: Buffer) => {
for (const line of data.toString().split('\n').filter(Boolean)) addLog(line);
});
child.on('error', (err) => { addLog(`Error: ${err.message}`); resolve(false); });
child.on('close', (code) => {
installProcess = null;
// Clean up temp file
try { fs.unlinkSync(installCmd); } catch { /* ignore */ }
resolve(code === 0);
});
});
downloadChild.on('error', (err) => {
addLog(`Download error: ${err.message}`);
resolve(false);
});
});
if (installState.status === 'cancelled') {
setStep('install-claude', 'failed', 'Cancelled');
return;
}
if (!installSuccess) {
setStep('install-claude', 'failed', 'Native installer failed. Check logs for details.');
installState.status = 'failed';
sendProgress();
return;
}
} else {
// macOS / Linux: curl | bash
addLog('Running: curl -fsSL https://claude.ai/install.sh | bash');
const installSuccess = await new Promise<boolean>((resolve) => {
const userShell = process.env.SHELL || '/bin/bash';
const child = spawn(userShell, ['-c', 'curl -fsSL https://claude.ai/install.sh | bash'], {
env: execEnv,
stdio: ['ignore', 'pipe', 'pipe'],
});
installProcess = child;
child.stdout?.on('data', (data: Buffer) => {
for (const line of data.toString().split('\n').filter(Boolean)) addLog(line);
});
child.stderr?.on('data', (data: Buffer) => {
for (const line of data.toString().split('\n').filter(Boolean)) addLog(line);
});
child.on('error', (err) => { addLog(`Error: ${err.message}`); resolve(false); });
child.on('close', (code) => {
installProcess = null;
if (code === 0) {
addLog('Native installer completed successfully.');
resolve(true);
} else if (installState.status === 'cancelled') {
addLog('Installation was cancelled.');
resolve(false);
} else {
addLog(`Installer exited with code ${code}`);
resolve(false);
}
});
});
if (installState.status === 'cancelled') {
setStep('install-claude', 'failed', 'Cancelled');
return;
}
if (!installSuccess) {
setStep('install-claude', 'failed', 'Native installer failed. Check logs for details.');
installState.status = 'failed';
sendProgress();
return;
}
}
setStep('install-claude', 'success');
// Step 2: Verify claude is available
setStep('verify', 'running');
// Native installer puts binary in ~/.local/bin/claude — add to PATH for verification
const verifyPath = `${path.join(home, '.local', 'bin')}${path.delimiter}${expandedPath}`;
const verifyEnv = { ...execEnv, PATH: verifyPath };
try {
const verifyOpts = isWin
? { timeout: 5000, encoding: 'utf-8' as const, env: verifyEnv, shell: true, stdio: 'pipe' as const }
: { timeout: 5000, encoding: 'utf-8' as const, env: verifyEnv, stdio: 'pipe' as const };
const claudeResult = execFileSync('claude', ['--version'], verifyOpts);
addLog(`Claude Code installed: ${claudeResult.trim()}`);
setStep('verify', 'success');
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
addLog(`Verification failed: ${msg}`);
setStep('verify', 'failed', 'Claude Code was installed but could not be verified.');
installState.status = 'failed';
sendProgress();
return;
}
installState.status = 'success';
installState.currentStep = null;
sendProgress();
} catch (err) {
const msg = err instanceof Error ? err.message : String(err);
addLog(`Unexpected error: ${msg}`);
installState.status = 'failed';
sendProgress();
}
})();
});
ipcMain.handle('install:cancel', () => {
if (installState.status !== 'running') {
return;
}
installState.status = 'cancelled';
installState.logs.push('Cancelling installation...');
if (installProcess) {
const pid = installProcess.pid;
try {
if (process.platform === 'win32' && pid) {
// Windows: kill entire process tree (shell: true spawns cmd.exe which
// spawns npm/winget — child.kill() only kills the shell, not the tree)
spawn('taskkill', ['/T', '/F', '/PID', String(pid)], { stdio: 'ignore' });
} else {
installProcess.kill();
}
} catch {
// already dead
}
installProcess = null;
installState.logs.push('Installation process terminated.');
}
mainWindow?.webContents.send('install:progress', installState);
});
ipcMain.handle('install:get-logs', () => {
return installState.logs;
});
// --- End install wizard IPC handlers ---
// Open a folder in the system file manager (Finder / Explorer)
ipcMain.handle('shell:open-path', async (_event: Electron.IpcMainInvokeEvent, folderPath: string) => {
return shell.openPath(folderPath);
});
// Bridge status IPC
ipcMain.handle('bridge:is-active', async () => {
return isBridgeActive();
});
// Native folder picker dialog
ipcMain.handle('dialog:open-folder', async (_event, options?: { defaultPath?: string; title?: string }) => {
if (!mainWindow) return { canceled: true, filePaths: [] };
const result = await dialog.showOpenDialog(mainWindow, {
title: options?.title || 'Select a project folder',
defaultPath: options?.defaultPath || undefined,
properties: ['openDirectory', 'createDirectory'],
});
return { canceled: result.canceled, filePaths: result.filePaths };
});
// --- Terminal IPC handlers ---
terminalManager.setOnData((id, data) => {
mainWindow?.webContents.send('terminal:data', { id, data });
});