Feature/product platform foundation v0.62 #1

Merged
robbond merged 683 commits from feature/product-platform-foundation-v0.62 into feature/emergent-unknowns-v0.5 2026-09-09 07:58:20 +01:00
Showing only changes of commit 8520f2195d - Show all commits
@@ -314,9 +314,16 @@ function assertRequiredEnv(name) {
return value;
}
// ─── Main: inspect only (no live calls) ───────────────────────────────────
// ─── Main: inspect by default, live when --live is supplied ────────────────
async function main() {
if (process.argv.includes("--live")) {
const result = await makeLiveCall();
console.log("=== RTO.14A Live Result ===");
console.log(JSON.stringify(result, null, 2));
return;
}
const result = await inspectApparatus();
console.log("=== RTO.14A Apparatus Inspection ===");
console.log(JSON.stringify(result, null, 2));