gekto 0.0.1 → 0.0.2
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.
|
@@ -11,7 +11,9 @@ export class ClaudeAgent {
|
|
|
11
11
|
this.readyPromise = new Promise((resolve) => {
|
|
12
12
|
this.resolveReady = resolve;
|
|
13
13
|
});
|
|
14
|
-
|
|
14
|
+
// Use shell to resolve claude from PATH (needed for Homebrew on macOS)
|
|
15
|
+
const shell = process.env.SHELL || '/bin/bash';
|
|
16
|
+
this.pty = pty.spawn(shell, ['-i', '-c', 'claude'], {
|
|
15
17
|
name: 'xterm-256color',
|
|
16
18
|
cols: 120,
|
|
17
19
|
rows: 40,
|