Add a State Hub workplan/wait graph as a Fabric explorer mode.
All checks were successful
CI Smoke / host-smoke (push) Successful in 1s
CI Smoke / container-smoke (push) Successful in 3s

Coordination is a view, not topology. Open workplans and wait tasks
project into graph-explorer; citation edges recover depends_on from
task prose. UI: /ui/graph-explorer?mode=coordination.

Assistant: grok
Assistant-Session: 01a09dc1-b21e-77e1-919e-fcad2f82b267
This commit is contained in:
codex 2026-09-14 13:07:42 +02:00
parent 18fabb37ce
commit b7724dedea
8 changed files with 366 additions and 2 deletions

View file

@ -563,7 +563,10 @@ def graph_explorer_page() -> str:
<script>
(() => {
const manifestUrl = "/exports/graph-explorer/manifest";
const graphUrl = "/exports/graph-explorer";
const graphMode = new URLSearchParams(window.location.search).get("mode");
const graphUrl = graphMode === "coordination"
? "/exports/graph-explorer?mode=coordination"
: "/exports/graph-explorer";
const canvas = document.getElementById("graph-canvas");
const zoneOverlay = document.getElementById("zone-overlay");
const popup = document.getElementById("popup");