fabro/graph.fabro
Fabro 48f8658844 init run
⚒️ Generated with [Fabro](https://fabro.sh)
2026-07-23 13:48:49 +00:00

24 lines
1.2 KiB
Text

digraph IsolationProbeB {
graph [goal="Probe which context values reach parallel branch nodes (fork-level truncate)"]
start [shape=Mdiamond]
exit [shape=Msquare]
seed [shape=tab, label="Seed", prompt="Respond with exactly this JSON object and nothing else: {\"context_updates\": {\"secret_marker\": \"XYZZY123\"}}"]
fork [shape=component, fidelity="truncate", label="Fan Out (truncate)", join_policy="wait_all"]
branch_a [shape=tab, label="Branch A", prompt="Report every context value, marker, or prior-stage detail visible to you above this instruction. If you can see a context value named secret_marker, state its value verbatim. If you cannot see any such marker, say exactly: NO-MARKER-VISIBLE."]
branch_b [shape=tab, label="Branch B", prompt="Report every context value, marker, or prior-stage detail visible to you above this instruction. If you can see a context value named secret_marker, state its value verbatim. If you cannot see any such marker, say exactly: NO-MARKER-VISIBLE."]
merge [shape=tripleoctagon, label="Merge"]
start -> seed
seed -> fork
fork -> branch_a
fork -> branch_b
branch_a -> merge
branch_b -> merge
merge -> exit
}