KB-2535

FIX7 P0 Production-Readiness Scoping — RERUN.sh

1 min read Revision 1
tool-kiem-thufix7p0production-readinessscoping-packet2026-06-12

#!/usr/bin/env bash

Re-run the production bad-input probe harness. Exit 0 iff all probes fail-closed.

set -e cd "$(dirname "$0")" python3 production_bad_input_probes.py >/tmp/fix7p0_prod_probe_rerun.json rc=$? echo "RERUN production_bad_input_probes.py exit=$rc" python3 -c "import json;s=json.load(open('/tmp/fix7p0_prod_probe_rerun.json'));print('verdict',s['verdict'],'blocked',s['blocked_count'],'/',s['probe_count'],'any_fail_open',s['any_fail_open'])" exit $rc

Back to Knowledge Hub knowledge/dev/reports/architecture/fix7-p0-production-readiness-surface-scoping-packet-2026-06-12/RERUN.sh