Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/observatory.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
<link rel="stylesheet" href="styles/60-taskbar.css">
<link rel="stylesheet" href="styles/70-pixel-icons.css">
<link rel="stylesheet" href="styles/95-observatory-cuperos.css?v=20260717.2">
<link rel="stylesheet" href="styles/99-webmcp-mission.css?v=20260903.2">
<script src="observatory.js?v=20260903.2" defer></script>
<script src="webmcp-tools.js?v=20260903.2" defer></script>
<script src="webmcp-mission.js?v=20260903.2" defer></script>
<link rel="stylesheet" href="styles/99-webmcp-mission.css?v=20260903.3">
<script src="observatory.js?v=20260903.3" defer></script>
<script src="webmcp-tools.js?v=20260903.3" defer></script>
<script src="webmcp-mission.js?v=20260903.3" defer></script>
</head>
<body data-depth="freshman" data-data-state="loading" data-mission-mode="active">
<a class="skip-link" href="#observatory-main">Skip to experiment</a>
Expand Down
2 changes: 1 addition & 1 deletion docs/webmcp-mission.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,6 @@
},
epoch_page: page,
source_raw_sha256: projection.source_artifact_sha256,
projection_boundary: "Bounded scalar projection; the raw SHA-256 remains authoritative.",
}, receipt);
}

Expand Down Expand Up @@ -485,6 +484,7 @@
}
const bridge = await observatory();
await bridge.focusCausalPath(path.nodeIds, path.edges);
scrollToId("causal-field-title");
const nodeRows = path.nodeIds.map((id) => {
const node = nodes.get(id);
return { node_id: id, label: node.label, evidence_class: node.evidence_class };
Expand Down
6 changes: 3 additions & 3 deletions tests/test_webmcp_contract.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,9 +377,9 @@ def test_adapter_documents_late_bound_bridge_and_human_only_approval() -> None:
def test_observatory_load_order_and_cache_keys_include_the_bridge_release() -> None:
html = OBSERVATORY_HTML.read_text(encoding="utf-8")
scripts = [
'observatory.js?v=20260903.2',
'webmcp-tools.js?v=20260903.2',
'webmcp-mission.js?v=20260903.2',
'observatory.js?v=20260903.3',
'webmcp-tools.js?v=20260903.3',
'webmcp-mission.js?v=20260903.3',
]

assert all(script in html for script in scripts)
Expand Down
1 change: 1 addition & 0 deletions tests/test_webmcp_mission_runtime.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ test("all eight WebMCP registrations execute against immutable evidence", async
assert.equal(run.epoch_page.rows.length, 6);
assert.equal(run.epoch_page.context_limit_applied, false);
assert.equal(run.source_raw_sha256, "d6321d6fc4c0f71c4f14c2f799eff252348073b3fe5508783f9f078e7f5e9d76");
assert.ok(JSON.stringify(run).length <= 1450, `run result left too little budget headroom: ${JSON.stringify(run).length}`);
assert.equal(run.truncated, undefined);

const trace = await execute("trace_causal_path", {
Expand Down
Loading