Add inferred dark evidence drawer and synthetic bursts

This commit is contained in:
dirtydishes 2026-01-04 19:05:20 -05:00
parent ea61c3b013
commit 8fc8361390
4 changed files with 517 additions and 28 deletions

View file

@ -30,6 +30,11 @@ const spawnChild = ({ name, cmd, cwd }: ChildSpec): void => {
const exitCode = code ?? 0;
const statusLabel = exitCode === 0 ? "exited" : "failed";
console.error(`[dev] ${name} ${statusLabel} (${exitCode})`);
if (name === "infra" && exitCode !== 0) {
console.error(
"[dev] Infra failed. Ensure Docker is installed and the daemon is running (OrbStack or Docker Desktop), then retry."
);
}
shutdown(exitCode);
});
};