/** * kOS Connection Daemon * * Maintains a persistent connection to kOS that CLI commands can reuse. * Auto-exits after 30 seconds of inactivity. * * Communication via Unix socket (macOS/Linux) or named pipe (Windows) * * Protocol (JSON over newline-delimited messages): * * Request: * { "type": "execute", "command": "PRINT 1." } * { "type": "status" } * { "type": "shutdown" } * * Response: * { "success": true, "output": "1", "connected": true, "vessel": "stick 1" } * { "success": false, "error": "Not connected" } */ export {}; //# sourceMappingURL=kos-daemon.d.ts.map