test-results / anatomy_alive_v6.py
betterwithage's picture
Restore sink: card, harness v6, fail-closed publisher, org pubkey
1087130 verified
Raw
History Blame
15.3 kB
#!/usr/bin/env python3
# SPDX-License-Identifier: Apache-2.0
# © 2026 Lutar, Stephen P. — SZL Holdings
"""
anatomy_alive_v6.py — SZL anatomy alive-harness, v6 ratchet.
Successor to run_anatomy_alive.py (2026-05-30, 7-layer STAGED-PASS). The v6
harness asserts against the LIVE substrate (no gh CLI dependency, no synthetic
trace): every assertion is a real HTTP probe of a public surface or a real
cryptographic verification. No STAGED label is used for anything that can be
exercised live today; anything that cannot is reported NOT-LIVE with the reason.
Layers (v6):
L1 ORGANS — liveness + honesty contracts of the public organ surfaces
L2 FORMULA-GATES— formula registry + live gate executions, pass rate DERIVED
L3 YUYAY-13 — 13-axis yuyay_v3 canonical schema live (legacy 9 = deprecated)
L4 WIRE-D — W3C traceparent propagation, real echo across organs
L5 HATUN-MCP — MCP gateway tools/list + REAL ECDSA-P256 DSSE signer
L6 MAP-INVARIANTS — anatomy-map surfaces carry locked-8 + Λ=Conjecture-1
L7 RECEIPTS — live Khipu receipt chain + DSSE envelope round-trip verify
Output: evidence JSON (one record per assertion), summary with honest counts.
Doctrine v11: no fabricated passes; a failed probe is reported as FAIL.
"""
from __future__ import annotations
import base64
import hashlib
import json
import re
import sys
import time
from datetime import datetime, timezone
import httpx
A11OY = "https://a-11-oy.com"
A11OY_SPACE = "https://szlholdings-a11oy.hf.space"
KILLINCHU = "https://szlholdings-killinchu.hf.space"
ANATOMY_SPACE = "https://szlholdings-anatomy.hf.space"
HATUN = "https://szlholdings-hatun-mcp.hf.space"
RAW = "https://raw.githubusercontent.com/szl-holdings"
LOCKED8 = ["F1", "F4", "F7", "F11", "F12", "F18", "F19", "F22"]
ASSERTIONS: list[dict] = []
def now_iso() -> str:
return datetime.now(timezone.utc).isoformat().replace("+00:00", "Z")
def record(layer: str, name: str, ok: bool, evidence):
ASSERTIONS.append({
"layer": layer, "assertion": name, "status": "PASS" if ok else "FAIL",
"evidence": evidence, "at": now_iso(),
})
print(f"[{'PASS' if ok else 'FAIL'}] {layer} :: {name}")
def get_json(client, url, **kw):
try:
r = client.get(url, **kw)
return r.status_code, r.json(), r
except Exception as e:
return None, {"_error": f"{type(e).__name__}: {e}"}, None
def post_json(client, url, body, **kw):
try:
r = client.post(url, json=body, **kw)
return r.status_code, r.json(), r
except Exception as e:
return None, {"_error": f"{type(e).__name__}: {e}"}, None
def main() -> int:
started = now_iso()
client = httpx.Client(timeout=25.0, follow_redirects=True,
headers={"User-Agent": "szl-anatomy-alive-harness/6.0"})
# ---------------- L1 ORGANS ----------------
sc, honest, _ = get_json(client, f"{A11OY}/api/a11oy/v1/honest")
lock = (honest or {}).get("doctrine_lock", {}) if isinstance(honest, dict) else {}
record("L1-ORGANS", "a11oy /v1/honest live", sc == 200, {"status": sc})
locked_ids = lock.get("locked_formula_ids") or lock.get("locked_formulas") or []
record("L1-ORGANS", "a11oy doctrine_lock locked-8 exact",
sorted(locked_ids) == sorted(LOCKED8) if locked_ids else False,
{"locked_formula_ids": locked_ids})
sc2, lam, _ = get_json(client, f"{A11OY}/api/a11oy/v1/lambda")
record("L1-ORGANS", "a11oy /v1/lambda live + uniqueness labeled conjecture",
sc2 == 200 and "conjecture" in json.dumps(lam).lower(),
{"status": sc2, "uniqueness": (lam or {}).get("uniqueness")})
try:
r3 = client.get(f"{KILLINCHU}/")
record("L1-ORGANS", "killinchu Space live", r3.status_code == 200,
{"status": r3.status_code, "content_type": r3.headers.get("content-type")})
except Exception as e:
record("L1-ORGANS", "killinchu Space live", False, {"error": str(e)})
try:
r4 = client.get(f"{ANATOMY_SPACE}/api/anatomy/v1/manifest")
record("L1-ORGANS", "anatomy Space manifest live", r4.status_code == 200,
{"status": r4.status_code})
except Exception as e:
record("L1-ORGANS", "anatomy Space manifest live", False, {"error": str(e)})
sc5, verdict, _ = post_json(client, f"{A11OY}/api/a11oy/v1/immune/verdict",
{"text": "harness v6 immune probe"})
record("L1-ORGANS", "immune /verdict live signed route", sc5 == 200,
{"status": sc5, "keys": sorted(list(verdict.keys()))[:8] if isinstance(verdict, dict) else None})
# ---------------- L2 FORMULA-GATES ----------------
scr, reg, _ = get_json(client, f"{A11OY}/api/a11oy/v1/formulas")
n_formulas = (reg or {}).get("count")
record("L2-GATES", "formula registry live", scr == 200 and isinstance(n_formulas, int),
{"status": scr, "count": n_formulas})
gate_cases = [
("lambda_bounded", [[0.82, 0.91, 0.77]]),
("lambda_homogeneous", [2.0, [0.6, 0.8, 0.9]]),
("lambda_aggregate", [[0.96, 0.97, 0.92, 0.93, 0.91, 0.94, 0.95, 0.92, 0.90, 0.91, 0.93, 0.92, 0.94]]),
("fisher_rao_distance", [[0.4, 0.6], [0.45, 0.55]]),
("pac_bayes_mcallester", [0.08, 1.5, 2000, 0.05]),
("khipu_merkle_root", [[{"decision_id": "d1", "value": 10}, {"decision_id": "d2", "value": 20}]]),
("dsse_envelope", ["harness-v6-payload", "harness-key-1"]),
("gleason_quantum_lambda", [[[0.5, 0.0], [0.0, 0.5]]]),
("two_witness_ks18_soundness", [True, True]),
("reed_solomon_singleton", [255, 223]),
]
gate_pass = 0
for name, args in gate_cases:
scg, res, _ = post_json(client, f"{A11OY}/api/a11oy/v1/formulas/{name}", {"args": args})
ok = scg == 200 and isinstance(res, dict) and res.get("ok") is True and bool(res.get("lambda_receipt"))
gate_pass += 1 if ok else 0
record("L2-GATES", f"live gate {name}", ok,
{"status": scg, "ok": (res or {}).get("ok"),
"proof_status": (res or {}).get("proof_status"),
"lambda_receipt": ((res or {}).get("lambda_receipt") or "")[:16]})
record("L2-GATES", "composer governed loop live", *(
lambda s, j: (s == 200 and isinstance(j, dict) and bool(j.get("receipts")),
{"status": s, "receipts": len(j.get("receipts", [])) if isinstance(j, dict) else 0}))(
*post_json(client, f"{A11OY}/api/a11oy/v1/composer/run",
{"calls": [{"formula_name": "lambda_bounded", "args": [[0.9, 0.8, 0.95]]},
{"formula_name": "khipu_merkle_root", "args": [[{"decision_id": "x", "value": 1}]]}]})[:2]))
gate_rate = {"passed": gate_pass, "total": len(gate_cases),
"rate": round(gate_pass / len(gate_cases), 4)}
# ---------------- L3 YUYAY-13 ----------------
sca, axes, _ = get_json(client, f"{A11OY}/api/a11oy/v1/axes")
ok13 = (sca == 200 and isinstance(axes, dict)
and axes.get("canonical_axis_count") == 13
and axes.get("legacy_axis_count") == 9
and "deprecated" in str(axes.get("legacy_label", "")).lower())
record("L3-YUYAY13", "yuyay_v3 13-axis canonical live (9-axis labeled deprecated legacy)",
ok13, {"status": sca, "canonical": (axes or {}).get("canonical_axis_count"),
"legacy_label": (axes or {}).get("legacy_label"),
"bands": (axes or {}).get("bands")})
floors = (axes or {}).get("floors_13") or []
record("L3-YUYAY13", "13-axis floor vector = [0.95×2, 0.90×11]",
floors == [0.95, 0.95] + [0.90] * 11, {"floors_13": floors})
for repo in ("a11oy", "killinchu"):
try:
src = client.get(f"{RAW}/{repo}/main/szl_formulas.py").text
ok = "DEFAULT_AXIS_COUNT: int = 13" in src and "LEGACY_AXIS_COUNT: int = 9" in src
record("L3-YUYAY13", f"{repo} main szl_formulas DEFAULT_AXIS_COUNT=13", ok,
{"sha256": hashlib.sha256(src.encode()).hexdigest()[:16]})
except Exception as e:
record("L3-YUYAY13", f"{repo} main szl_formulas DEFAULT_AXIS_COUNT=13", False, {"error": str(e)})
# ---------------- L4 WIRE-D ----------------
trace_id = hashlib.sha256(started.encode()).hexdigest()[:32]
parent = f"00-{trace_id}-{'b' * 16}-01"
for label, url in (("a11oy", f"{A11OY_SPACE}/api/a11oy/healthz"),
("killinchu", f"{KILLINCHU}/api/killinchu/healthz")):
try:
r = client.get(url, headers={"traceparent": parent})
echoed = r.headers.get("traceparent", "")
same_trace = echoed.split("-")[1] == trace_id if echoed.count("-") >= 3 else False
child_span = echoed.split("-")[2] != "b" * 16 if echoed.count("-") >= 3 else False
record("L4-WIRED", f"{label} traceparent propagated (same trace-id, child span)",
r.status_code == 200 and same_trace,
{"status": r.status_code, "sent": parent, "echoed": echoed,
"child_span_minted": child_span})
except Exception as e:
record("L4-WIRED", f"{label} traceparent propagated (same trace-id, child span)",
False, {"error": str(e)})
# ---------------- L5 HATUN-MCP ----------------
def mcp(method, params=None, rid=1):
body = {"jsonrpc": "2.0", "id": rid, "method": method}
if params is not None:
body["params"] = params
r = client.post(f"{HATUN}/mcp/", json=body,
headers={"Accept": "application/json, text/event-stream"})
txt = r.text
m = re.search(r"data: (\{.*\})", txt)
return r.status_code, json.loads(m.group(1)) if m else json.loads(txt)
try:
scl, tl = mcp("tools/list", rid=2)
tools = tl.get("result", {}).get("tools", [])
record("L5-HATUN", "MCP gateway tools/list live", scl == 200 and len(tools) >= 25,
{"status": scl, "tool_count": len(tools),
"sample": [t["name"] for t in tools[:6]]})
except Exception as e:
tools = []
record("L5-HATUN", "MCP gateway tools/list live", False, {"error": str(e)})
try:
scs, sg = mcp("tools/call", {"name": "dsse_sign",
"arguments": {"payload": json.dumps({"harness": "v6", "at": started})}}, rid=3)
inner = json.loads(sg["result"]["content"][0]["text"])
real = inner.get("honesty") == "REAL" and inner.get("signer_mode") == "ECDSA-P256"
record("L5-HATUN", "gateway DSSE signer REAL ECDSA-P256 (not placeholder)", scs == 200 and real,
{"status": scs, "signer_mode": inner.get("signer_mode"),
"keyid": inner.get("envelope", {}).get("signatures", [{}])[0].get("keyid")})
# verify the gateway signature against the COMMITTED pubkey — real crypto, no trust-me
try:
from cryptography.hazmat.primitives.asymmetric import ec
from cryptography.hazmat.primitives import hashes, serialization
pub_pem = client.get(f"{RAW}/hatun-mcp/main/PUBKEY_szlholdings-ec-p256.pem").text
pub = serialization.load_pem_public_key(pub_pem.encode())
env = inner["envelope"]
payload = base64.b64decode(env["payload"])
pae = b"DSSEv1 %d %s %d %s" % (len(env["payloadType"].encode()), env["payloadType"].encode(),
len(payload), payload)
sig = base64.b64decode(env["signatures"][0]["sig"])
pub.verify(sig, pae, ec.ECDSA(hashes.SHA256()))
record("L5-HATUN", "gateway signature verifies against committed org pubkey", True,
{"pubkey_sha256": hashlib.sha256(pub_pem.encode()).hexdigest()[:16], "pae": "DSSEv1"})
except Exception as e:
record("L5-HATUN", "gateway signature verifies against committed org pubkey", False,
{"error": f"{type(e).__name__}: {e}"})
except Exception as e:
record("L5-HATUN", "gateway DSSE signer REAL ECDSA-P256 (not placeholder)", False, {"error": str(e)})
# ---------------- L6 MAP-INVARIANTS ----------------
surfaces = [
("anatomy-src data.js", f"{RAW}/anatomy/main/data.js"),
("hf-anatomy data.js", f"{ANATOMY_SPACE}/data.js"),
("a11oy-anatomy-mirror data.js", f"{A11OY}/anatomy-map/data.js"),
]
for label, url in surfaces:
try:
txt = client.get(url).text
has8 = all(f"'{f}'" in txt or f'"{f}"' in txt or f"{f}/" in txt or f"{f} " in txt or f in txt
for f in LOCKED8)
conj = bool(re.search(r"Conjecture\s*1", txt))
# honest exactness: no formula id beyond the locked-8 claimed as locked-proven
record("L6-MAP", f"{label}: locked-8 + Λ=Conjecture-1 invariants present",
has8 and conj, {"len": len(txt), "conjecture1": conj})
except Exception as e:
record("L6-MAP", f"{label}: locked-8 + Λ=Conjecture-1 invariants present", False,
{"error": str(e)})
# ---------------- L7 RECEIPTS ----------------
scc, ledger, _ = get_json(client, f"{A11OY}/api/a11oy/v1/ledger")
cnt = (ledger or {}).get("count")
record("L7-RECEIPTS", "Khipu receipt ledger live, non-empty",
scc == 200 and isinstance(cnt, int) and cnt > 0, {"status": scc, "count": cnt})
scd, dse, _ = post_json(client, f"{A11OY}/api/a11oy/v1/formulas/dsse_envelope",
{"args": ["harness-v6-roundtrip", "harness-key-1"]})
record("L7-RECEIPTS", "DSSE envelope formula round-trip live",
scd == 200 and (dse or {}).get("ok") is True, {"status": scd})
# ---------------- summary ----------------
finished = now_iso()
passed = sum(1 for a in ASSERTIONS if a["status"] == "PASS")
total = len(ASSERTIONS)
layers = {}
for a in ASSERTIONS:
layers.setdefault(a["layer"], {"pass": 0, "fail": 0})
layers[a["layer"]]["pass" if a["status"] == "PASS" else "fail"] += 1
evidence = {
"harness": "anatomy-alive-harness",
"version": "v6",
"predecessor": "run_anatomy_alive.py (2026-05-30, 7-layer, STAGED-PASS)",
"startedAt": started, "finishedAt": finished,
"assertions_total": total, "assertions_passed": passed,
"verdict": "GREEN" if passed == total else "PARTIAL",
"layers": layers,
"formula_gate_pass_rate": gate_rate,
"honesty": ("Every assertion is a live HTTP probe or a real cryptographic verification "
"performed at the recorded timestamp. No numbers are hand-typed; the counts "
"above are derived from the assertion records below. Λ = Conjecture 1."),
"assertions": ASSERTIONS,
}
with open(sys.argv[1] if len(sys.argv) > 1 else "anatomy_alive_v6_evidence.json", "w") as f:
json.dump(evidence, f, indent=1)
print(f"\n== anatomy-alive v6: {passed}/{total} assertions PASS — "
f"{evidence['verdict']} · gate rate {gate_rate['passed']}/{gate_rate['total']} ==")
return 0 if passed == total else 1
if __name__ == "__main__":
sys.exit(main())