#!/usr/bin/env python3 from shattered_diamond_core import run_all, validate_receipts receipts = run_all() validation = validate_receipts(receipts) assert len(receipts) == 10 assert all(r["pass"] for r in receipts) assert validation["all_validation_checks_passed"] print("SPACE_VALIDATION_PASS 10/10")