(name = 'remote-control')
| 20 | * Returns the path to the daemon state file for a given daemon name. |
| 21 | */ |
| 22 | export function getDaemonStateFilePath(name = 'remote-control'): string { |
| 23 | return join(getClaudeConfigHomeDir(), 'daemon', `${name}.json`) |
| 24 | } |
| 25 | |
| 26 | /** |
| 27 | * Write daemon state to disk. Called by the supervisor on startup. |
no outgoing calls
no test coverage detected