From 71f091f147e3b7ed254b37d7904f5de0c12de34a Mon Sep 17 00:00:00 2001 From: DIDX Date: Tue, 9 Jun 2026 21:09:53 +0800 Subject: [PATCH] Clarify public demo production readiness score --- tools/pilot-readiness.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/pilot-readiness.py b/tools/pilot-readiness.py index c1798f7..7618cba 100755 --- a/tools/pilot-readiness.py +++ b/tools/pilot-readiness.py @@ -15,7 +15,8 @@ score += 10 if data.get("signature") and not str(data.get("signature")).startswith("demo-") else 0 score += 10 if data.get("receipt_id") else 0 -print(f"Pilot Readiness Score: {min(score, 100)}/100") +print(f"Production Readiness Score: {min(score, 100)}/100") +print("Status: valid public demo receipt, not production-ready.") print("⚠ demo signature only; production signing requires Pilot Access" if str(data.get("signature", "")).startswith("demo-") else "✅ production-like signature present") print("⚠ missing policy_ref for real workflow mapping" if not data.get("policy_ref") else "✅ policy_ref present") print("⚠ missing proof_ref for external verification" if not data.get("proof_ref") else "✅ proof_ref present")