Author: Mike Swanson Machine: DESKTOP-0O8A1RL Timestamp: 2026-05-22 11:07:55
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Print durable recovery status for Impeccable live sessions.
|
|
*/
|
|
|
|
import { createLiveSessionStore } from './live-session-store.mjs';
|
|
import { readLiveServerInfo } from './impeccable-paths.mjs';
|
|
|
|
function readServerInfo() {
|
|
return readLiveServerInfo(process.cwd())?.info || null;
|
|
}
|
|
|
|
async function fetchServerStatus(info) {
|
|
if (!info) return null;
|
|
try {
|
|
const res = await fetch(`http://localhost:${info.port}/status?token=${info.token}`);
|
|
if (!res.ok) return null;
|
|
return await res.json();
|
|
} catch {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export async function statusCli() {
|
|
const info = readServerInfo();
|
|
const server = await fetchServerStatus(info);
|
|
const store = createLiveSessionStore({ cwd: process.cwd() });
|
|
const activeSessions = store.listActiveSessions();
|
|
const payload = {
|
|
liveServer: server ? {
|
|
status: server.status,
|
|
port: server.port,
|
|
connectedClients: server.connectedClients,
|
|
pendingEvents: server.pendingEvents,
|
|
} : null,
|
|
activeSessions: server?.activeSessions || activeSessions,
|
|
recoveryHint: server
|
|
? 'Run live-poll.mjs to continue pending work, or live-complete.mjs --id <session> after manual cleanup.'
|
|
: 'Start live-server.mjs to requeue pending durable events, then run live-poll.mjs.',
|
|
};
|
|
console.log(JSON.stringify(payload, null, 2));
|
|
}
|
|
|
|
const _running = process.argv[1];
|
|
if (_running?.endsWith('live-status.mjs') || _running?.endsWith('live-status.mjs/')) {
|
|
statusCli();
|
|
}
|