File size: 320 Bytes
a35e79e |
1 2 3 4 5 6 7 8 9 10 |
import { spawnSync } from "node:child_process";
// Basic sanity: ensure the wrapper starts and the CLI exists.
const r = spawnSync("moltbot", ["--version"], { encoding: "utf8" });
if (r.status !== 0) {
console.error(r.stdout || r.stderr);
process.exit(r.status ?? 1);
}
console.log("moltbot ok:", r.stdout.trim());
|