tooling: expose closure metadata in live harness
This commit is contained in:
@@ -343,6 +343,16 @@ async function runUpdateOnlyMode() {
|
||||
}
|
||||
}
|
||||
|
||||
// ── Capture explicit closure metadata from accepted update ─
|
||||
const finalActiveUnknownNodeId =
|
||||
updatedGraph?.activeUnknownNodeId === undefined
|
||||
? null
|
||||
: updatedGraph.activeUnknownNodeId;
|
||||
console.log(
|
||||
`finalActiveUnknownNodeId: ${JSON.stringify(finalActiveUnknownNodeId)}`,
|
||||
);
|
||||
console.log(`finalSelectedQuestion: ${JSON.stringify(sq)}`);
|
||||
|
||||
// ── Capture persistent graph after update ───────────────
|
||||
const pNodes = updatedGraph?.nodes ?? [];
|
||||
const pEdges = updatedGraph?.edges ?? [];
|
||||
|
||||
Reference in New Issue
Block a user