I've installed Claude but when I try and run the app using npm start It says it can't detect Claude. I've added the binary to my system path. I've checked the app is grabbing the system path but it's still not working.
Adding in some debugging code I can see the error in detectClaudeCli() is returning
Error: spawn claude ENOENT
at ChildProcess._handle.onexit (node:internal/child_process:285:19)
at onErrorNT (node:internal/child_process:483:16)
at process.processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -4058,
code: 'ENOENT',
syscall: 'spawn claude',
path: 'claude',
spawnargs: [ '--version' ],
cmd: 'claude --version',
stdout: '',
stderr: ''
}

I've installed Claude but when I try and run the app using
npm startIt says it can't detect Claude. I've added the binary to my system path. I've checked the app is grabbing the system path but it's still not working.Adding in some debugging code I can see the error in
detectClaudeCli()is returning