()
| 27 | * Check if we're running from our managed local installation |
| 28 | */ |
| 29 | export function isRunningFromLocalInstallation(): boolean { |
| 30 | const execPath = process.argv[1] || '' |
| 31 | return execPath.includes('/.claude/local/node_modules/') |
| 32 | } |
| 33 | |
| 34 | /** |
| 35 | * Write `content` to `path` only if the file does not already exist. |
no outgoing calls
no test coverage detected