feat(governance): 新增 owner-approved execution rehearsal
All checks were successful
Code Review / ai-code-review (push) Successful in 13s
CD Pipeline / tests (push) Successful in 1m27s
CD Pipeline / build-and-deploy (push) Successful in 4m45s
CD Pipeline / post-deploy-checks (push) Successful in 26s

This commit is contained in:
Your Name
2026-06-14 01:57:23 +08:00
parent 0a737cf400
commit 1ceaa45829
10 changed files with 1533 additions and 1 deletions

View File

@@ -124,6 +124,9 @@ from src.services.ai_agent_result_capture_no_write_readback import (
from src.services.ai_agent_result_capture_owner_promotion_review import (
load_latest_ai_agent_result_capture_owner_promotion_review,
)
from src.services.ai_agent_result_capture_owner_approved_execution_rehearsal import (
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal,
)
from src.services.ai_agent_result_capture_promotion_approval_gate import (
load_latest_ai_agent_result_capture_promotion_approval_gate,
)
@@ -1851,6 +1854,36 @@ async def get_agent_result_capture_owner_promotion_review() -> dict[str, Any]:
) from exc
@router.get(
"/agent-result-capture-owner-approved-execution-rehearsal",
response_model=dict[str, Any],
summary="取得 AI Agent result capture owner-approved execution rehearsal",
description=(
"讀取最新已提交的 P2-126 owner-approved execution rehearsal"
"此端點只回傳 no-write execution rehearsal、apply gate、verifier rehearsal、"
"rollback drill、blocked live apply 與 operator handoff不套用 writer、不執行 live apply、"
"不寫 receipt、不寫 result capture、learning、PlayBook trust、reviewer queue、"
"Gateway queue不送 Telegram、不呼叫 Bot API、不讀 secret。"
),
)
async def get_agent_result_capture_owner_approved_execution_rehearsal() -> dict[str, Any]:
"""Return the latest read-only owner-approved execution rehearsal package."""
try:
payload = await asyncio.to_thread(load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal)
return redact_public_lan_topology(payload)
except FileNotFoundError as exc:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=str(exc),
) from exc
except (json.JSONDecodeError, ValueError) as exc:
logger.error("ai_agent_result_capture_owner_approved_execution_rehearsal_invalid", error=str(exc))
raise HTTPException(
status_code=status.HTTP_500_INTERNAL_SERVER_ERROR,
detail="AI Agent result capture owner-approved execution rehearsal 無效",
) from exc
@router.get(
"/agent-owner-approved-fixture-dry-run",
response_model=dict[str, Any],

View File

@@ -0,0 +1,407 @@
"""
AI Agent result capture owner-approved execution rehearsal snapshot.
Loads the latest committed P2-126 owner-approved execution rehearsal package.
This module validates committed evidence only; it never applies writers, executes
live applies, writes receipts, writes result captures, writes learning records,
updates PlayBook trust, writes reviewer / Gateway queues, sends Telegram
messages, reads canonical runtime targets, reads secrets, or performs
destructive operations.
"""
from __future__ import annotations
import json
from pathlib import Path
from typing import Any
from src.services.snapshot_paths import default_evaluations_dir
_DEFAULT_EVALUATIONS_DIR = default_evaluations_dir(Path(__file__))
_SNAPSHOT_PATTERN = "ai_agent_result_capture_owner_approved_execution_rehearsal_*.json"
_SCHEMA_VERSION = "ai_agent_result_capture_owner_approved_execution_rehearsal_v1"
_RUNTIME_AUTHORITY = "result_capture_owner_approved_execution_rehearsal_only_no_live_write"
def load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal(
evaluations_dir: Path | None = None,
) -> dict[str, Any]:
"""Load the newest committed owner-approved execution rehearsal package."""
directory = evaluations_dir or _DEFAULT_EVALUATIONS_DIR
candidates = sorted(directory.glob(_SNAPSHOT_PATTERN))
if not candidates:
raise FileNotFoundError(f"no AI Agent result capture owner-approved execution rehearsal snapshots found in {directory}")
latest = candidates[-1]
with latest.open(encoding="utf-8") as handle:
payload = json.load(handle)
if not isinstance(payload, dict):
raise ValueError(f"{latest}: expected JSON object")
label = str(latest)
_require_schema(payload, label)
_require_prior(payload, label)
_require_truth(payload, label)
_require_execution_rehearsals(payload, label)
_require_apply_checks(payload, label)
_require_verifier_rehearsals(payload, label)
_require_rollback_drills(payload, label)
_require_blocked_applies(payload, label)
_require_actions(payload, label)
_require_display_redaction(payload, label)
_require_no_forbidden_display_terms(payload, label)
_require_rollup_consistency(payload, label)
return payload
def _require_schema(payload: dict[str, Any], label: str) -> None:
if payload.get("schema_version") != _SCHEMA_VERSION:
raise ValueError(f"{label}: expected schema_version={_SCHEMA_VERSION}")
status = payload.get("program_status") or {}
expected = {
"current_priority": "P2",
"current_task_id": "P2-126",
"next_task_id": "P2-127",
"read_only_mode": True,
"runtime_authority": _RUNTIME_AUTHORITY,
"overall_completion_percent": 100,
}
mismatches = _mismatches(status, expected)
if mismatches:
raise ValueError(f"{label}: program_status mismatch: {mismatches}")
if not status.get("status_note"):
raise ValueError(f"{label}: program_status.status_note is required")
def _require_prior(payload: dict[str, Any], label: str) -> None:
prior = payload.get("prior_result_capture_owner_promotion_review") or {}
expected = {
"schema_version": "ai_agent_result_capture_owner_promotion_review_v1",
"owner_promotion_packet_count": 5,
"execution_gate_check_count": 5,
"rollback_owner_review_count": 5,
"blocked_execution_write_count": 6,
"operator_action_count": 5,
"owner_promotion_approved_count": 0,
"execution_gate_pass_count": 0,
"rollback_owner_confirmed_count": 0,
"post_write_verifier_ready_count": 0,
"writer_apply_count": 0,
"execution_apply_count": 0,
"receipt_write_count": 0,
"result_capture_write_count": 0,
"learning_write_count": 0,
"playbook_trust_write_count": 0,
"reviewer_queue_write_count": 0,
"gateway_queue_write_count": 0,
"telegram_send_count": 0,
"bot_api_call_count": 0,
"report_receipt_write_count": 0,
}
mismatches = _mismatches(prior, expected)
if mismatches:
raise ValueError(f"{label}: prior_result_capture_owner_promotion_review mismatch: {mismatches}")
if not prior.get("readiness_note"):
raise ValueError(f"{label}: prior_result_capture_owner_promotion_review.readiness_note is required")
def _require_truth(payload: dict[str, Any], label: str) -> None:
truth = payload.get("execution_rehearsal_truth") or {}
required_true = {
"p2_125_owner_promotion_loaded",
"owner_approval_record_required",
"no_write_apply_rehearsal_ready",
"post_write_verifier_rehearsal_ready",
"rollback_drill_ready",
"idempotency_replay_required",
"redaction_review_required",
"execution_rehearsal_only",
}
missing = sorted(field for field in required_true if truth.get(field) is not True)
if missing:
raise ValueError(f"{label}: rehearsal ready flags must remain true: {missing}")
required_false = {
"owner_approval_record_received",
"no_write_apply_executed",
"post_write_verifier_passed",
"rollback_drill_confirmed",
"writer_apply_enabled",
"execution_apply_enabled",
"receipt_write_enabled",
"reviewer_queue_write_enabled",
"gateway_queue_write_enabled",
"telegram_send_enabled",
"bot_api_call_enabled",
"report_receipt_write_enabled",
"result_capture_write_enabled",
"learning_write_enabled",
"playbook_trust_write_enabled",
"production_write_enabled",
"secret_read_enabled",
"destructive_operation_enabled",
}
unsafe = sorted(field for field in required_false if truth.get(field) is not False)
if unsafe:
raise ValueError(f"{label}: live execution/send/write flags must remain false: {unsafe}")
zero_counts = {
"owner_approval_record_received_count",
"no_write_apply_execution_count",
"post_write_verifier_pass_count",
"rollback_drill_confirmed_count",
"writer_apply_count",
"execution_apply_count",
"receipt_write_count",
"reviewer_queue_write_count",
"gateway_queue_write_count",
"telegram_send_count",
"bot_api_call_count",
"report_receipt_write_count",
"result_capture_write_count",
"learning_write_count",
"playbook_trust_write_count",
"production_write_count",
"secret_read_count",
"destructive_operation_count",
}
non_zero = sorted(field for field in zero_counts if truth.get(field) != 0)
if non_zero:
raise ValueError(f"{label}: rehearsal live counters must remain zero: {non_zero}")
if not truth.get("truth_note"):
raise ValueError(f"{label}: execution_rehearsal_truth.truth_note is required")
def _require_execution_rehearsals(payload: dict[str, Any], label: str) -> None:
items = payload.get("execution_rehearsals") or []
required = {
"rehearsal_result_capture_writer",
"rehearsal_learning_writer",
"rehearsal_playbook_trust_writer",
"rehearsal_reviewer_queue_writer",
"rehearsal_gateway_queue_writer",
}
ids = {item.get("rehearsal_id") for item in items}
if ids != required:
raise ValueError(f"{label}: execution rehearsals must match {sorted(required)}")
for item in items:
item_id = item.get("rehearsal_id")
if item.get("rehearsal_mode") != "no_write_apply_rehearsal":
raise ValueError(f"{label}: rehearsal {item_id} must remain no-write apply rehearsal")
if item.get("no_write_only") is not True or item.get("live_apply_enabled") is not False:
raise ValueError(f"{label}: rehearsal {item_id} must not enable live apply")
if item.get("status") not in {"ready_for_rehearsal_review", "approval_required", "blocked_by_policy"}:
raise ValueError(f"{label}: rehearsal {item_id} status is invalid")
if not item.get("expected_output") or not _is_redacted_sha256(item.get("evidence_hash")):
raise ValueError(f"{label}: rehearsal {item_id} must include expected output and redacted evidence")
def _require_apply_checks(payload: dict[str, Any], label: str) -> None:
items = payload.get("no_write_apply_checks") or []
required = {
"check_owner_approval_record",
"check_idempotency_replay",
"check_payload_redaction",
"check_post_write_verifier",
"check_production_write_block",
}
ids = {item.get("check_id") for item in items}
if ids != required:
raise ValueError(f"{label}: no-write apply checks must match {sorted(required)}")
for item in items:
item_id = item.get("check_id")
if item.get("check_mode") != "no_write_apply_gate":
raise ValueError(f"{label}: check {item_id} must remain no-write apply gate")
if item.get("required_before_apply") is not True or item.get("live_apply_enabled") is not False:
raise ValueError(f"{label}: check {item_id} must not enable live apply")
if item.get("status") not in {"ready_for_rehearsal_review", "approval_required", "blocked_by_policy"}:
raise ValueError(f"{label}: check {item_id} status is invalid")
if not item.get("failure_if_missing"):
raise ValueError(f"{label}: check {item_id} failure_if_missing is required")
def _require_verifier_rehearsals(payload: dict[str, Any], label: str) -> None:
items = payload.get("post_write_verifier_rehearsals") or []
required = {
"verifier_result_capture",
"verifier_learning",
"verifier_playbook_trust",
"verifier_reviewer_queue",
"verifier_gateway_queue",
}
ids = {item.get("verifier_id") for item in items}
if ids != required:
raise ValueError(f"{label}: verifier rehearsals must match {sorted(required)}")
for item in items:
item_id = item.get("verifier_id")
if item.get("verifier_mode") != "fixture_only_no_live_read":
raise ValueError(f"{label}: verifier {item_id} must remain fixture-only")
if item.get("verifier_ready") is not False or item.get("live_read_enabled") is not False:
raise ValueError(f"{label}: verifier {item_id} must not enable live read")
if item.get("status") not in {"ready_for_rehearsal_review", "approval_required", "blocked_by_policy"}:
raise ValueError(f"{label}: verifier {item_id} status is invalid")
if not item.get("expected_signal"):
raise ValueError(f"{label}: verifier {item_id} expected_signal is required")
def _require_rollback_drills(payload: dict[str, Any], label: str) -> None:
items = payload.get("rollback_drills") or []
required = {
"rollback_drill_result_capture",
"rollback_drill_learning",
"rollback_drill_playbook_trust",
"rollback_drill_reviewer_queue",
"rollback_drill_gateway_queue",
}
ids = {item.get("drill_id") for item in items}
if ids != required:
raise ValueError(f"{label}: rollback drills must match {sorted(required)}")
for item in items:
item_id = item.get("drill_id")
if item.get("rollback_owner_required") is not True or item.get("rollback_drill_confirmed") is not False:
raise ValueError(f"{label}: rollback drill {item_id} must require unconfirmed owner")
if item.get("status") not in {"ready_for_rehearsal_review", "approval_required", "blocked_by_policy"}:
raise ValueError(f"{label}: rollback drill {item_id} status is invalid")
if not item.get("drill_note"):
raise ValueError(f"{label}: rollback drill {item_id} drill_note is required")
def _require_blocked_applies(payload: dict[str, Any], label: str) -> None:
items = payload.get("blocked_live_applies") or []
required = {
"blocked_writer_apply",
"blocked_execution_apply",
"blocked_receipt_write",
"blocked_result_capture_write",
"blocked_gateway_queue_write",
"blocked_telegram_send",
}
ids = {item.get("blocker_id") for item in items}
if ids != required:
raise ValueError(f"{label}: blocked live applies must match {sorted(required)}")
for item in items:
item_id = item.get("blocker_id")
if item.get("status") not in {"approval_required", "blocked_by_policy"}:
raise ValueError(f"{label}: blocker {item_id} status is invalid")
if item.get("severity") not in {"high", "critical"}:
raise ValueError(f"{label}: blocker {item_id} severity is invalid")
if not item.get("blocked_action") or not item.get("blocked_until"):
raise ValueError(f"{label}: blocker {item_id} must include blocked_action and blocked_until")
if not _is_redacted_sha256(item.get("evidence_hash")):
raise ValueError(f"{label}: blocker {item_id} must expose redacted evidence_hash")
def _require_actions(payload: dict[str, Any], label: str) -> None:
actions = payload.get("operator_actions") or []
required = {
"review_execution_rehearsals",
"verify_no_write_apply_checks",
"inspect_post_write_verifier_rehearsal",
"confirm_rollback_drills",
"hold_live_apply_gate",
}
ids = {action.get("action_id") for action in actions}
if ids != required:
raise ValueError(f"{label}: operator actions must match {sorted(required)}")
for action in actions:
action_id = action.get("action_id")
if action.get("runtime_write_allowed") is not False:
raise ValueError(f"{label}: action {action_id} must not allow runtime write")
if not action.get("operator_instruction"):
raise ValueError(f"{label}: action {action_id} operator_instruction is required")
def _require_display_redaction(payload: dict[str, Any], label: str) -> None:
contract = payload.get("display_redaction_contract") or {}
expected = {
"redaction_required": True,
"raw_prompt_display_allowed": False,
"private_reasoning_display_allowed": False,
"secret_value_display_allowed": False,
"raw_runtime_payload_display_allowed": False,
"internal_collaboration_content_display_allowed": False,
}
mismatches = _mismatches(contract, expected)
if mismatches:
raise ValueError(f"{label}: display_redaction_contract mismatch: {mismatches}")
if not contract.get("frontend_display_policy"):
raise ValueError(f"{label}: display_redaction_contract.frontend_display_policy is required")
def _require_rollup_consistency(payload: dict[str, Any], label: str) -> None:
rollups = payload.get("rollups") or {}
rehearsals = payload.get("execution_rehearsals") or []
checks = payload.get("no_write_apply_checks") or []
verifiers = payload.get("post_write_verifier_rehearsals") or []
drills = payload.get("rollback_drills") or []
blockers = payload.get("blocked_live_applies") or []
actions = payload.get("operator_actions") or []
expected = {
"execution_rehearsal_count": len(rehearsals),
"no_write_apply_check_count": len(checks),
"post_write_verifier_rehearsal_count": len(verifiers),
"rollback_drill_count": len(drills),
"blocked_live_apply_count": len(blockers),
"operator_action_count": len(actions),
"approval_required_rehearsal_count": sum(1 for item in rehearsals if item.get("status") == "approval_required"),
"blocked_rehearsal_count": sum(1 for item in rehearsals if item.get("status") == "blocked_by_policy"),
"approval_required_check_count": sum(1 for item in checks if item.get("status") == "approval_required"),
"blocked_check_count": sum(1 for item in checks if item.get("status") == "blocked_by_policy"),
"approval_required_verifier_count": sum(1 for item in verifiers if item.get("status") == "approval_required"),
"blocked_verifier_count": sum(1 for item in verifiers if item.get("status") == "blocked_by_policy"),
"approval_required_rollback_count": sum(1 for item in drills if item.get("status") == "approval_required"),
"blocked_rollback_count": sum(1 for item in drills if item.get("status") == "blocked_by_policy"),
"critical_blocker_count": sum(1 for item in blockers if item.get("severity") == "critical"),
"owner_approval_record_received_count": 0,
"no_write_apply_execution_count": 0,
"post_write_verifier_pass_count": 0,
"rollback_drill_confirmed_count": 0,
"writer_apply_count": 0,
"execution_apply_count": 0,
"receipt_write_count": 0,
"reviewer_queue_write_count": 0,
"gateway_queue_write_count": 0,
"telegram_send_count": 0,
"bot_api_call_count": 0,
"report_receipt_write_count": 0,
"result_capture_write_count": 0,
"learning_write_count": 0,
"playbook_trust_write_count": 0,
"production_write_count": 0,
"secret_read_count": 0,
"destructive_operation_count": 0,
}
mismatches = _mismatches(rollups, expected)
if mismatches:
raise ValueError(f"{label}: rollup counts mismatch: {mismatches}")
def _require_no_forbidden_display_terms(payload: dict[str, Any], label: str) -> None:
serialized = json.dumps(payload, ensure_ascii=False)
forbidden = {
"work_window_transcript",
"session_id",
"browser_context",
"authorization_header",
"raw Telegram payload",
"private reasoning",
"raw prompt",
"chain-of-thought",
}
hits = sorted(term for term in forbidden if term in serialized)
if hits:
raise ValueError(f"{label}: forbidden display terms present: {hits}")
def _is_redacted_sha256(value: Any) -> bool:
if not isinstance(value, str) or not value.startswith("sha256:"):
return False
digest = value.removeprefix("sha256:")
return len(digest) == 64 and all(char in "0123456789abcdef" for char in digest)
def _mismatches(payload: dict[str, Any], expected: dict[str, Any]) -> dict[str, dict[str, Any]]:
return {
key: {"expected": value, "actual": payload.get(key)}
for key, value in expected.items()
if payload.get(key) != value
}

View File

@@ -0,0 +1,96 @@
from __future__ import annotations
import json
from pathlib import Path
import pytest
from src.services.ai_agent_result_capture_owner_approved_execution_rehearsal import (
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal,
)
REPO_ROOT = Path(__file__).resolve().parents[3]
FIXTURE = REPO_ROOT / "docs/evaluations/ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
def test_load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal_snapshot() -> None:
data = load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal()
assert data["schema_version"] == "ai_agent_result_capture_owner_approved_execution_rehearsal_v1"
assert data["program_status"]["current_task_id"] == "P2-126"
assert data["program_status"]["next_task_id"] == "P2-127"
assert data["program_status"]["runtime_authority"] == "result_capture_owner_approved_execution_rehearsal_only_no_live_write"
rollups = data["rollups"]
assert rollups["execution_rehearsal_count"] == 5
assert rollups["no_write_apply_check_count"] == 5
assert rollups["post_write_verifier_rehearsal_count"] == 5
assert rollups["rollback_drill_count"] == 5
assert rollups["blocked_live_apply_count"] == 6
assert rollups["operator_action_count"] == 5
assert rollups["critical_blocker_count"] == 5
assert rollups["owner_approval_record_received_count"] == 0
assert rollups["no_write_apply_execution_count"] == 0
assert rollups["post_write_verifier_pass_count"] == 0
assert rollups["rollback_drill_confirmed_count"] == 0
assert rollups["writer_apply_count"] == 0
assert rollups["execution_apply_count"] == 0
assert rollups["receipt_write_count"] == 0
assert rollups["gateway_queue_write_count"] == 0
assert rollups["telegram_send_count"] == 0
assert rollups["bot_api_call_count"] == 0
assert rollups["result_capture_write_count"] == 0
assert rollups["learning_write_count"] == 0
assert rollups["playbook_trust_write_count"] == 0
assert rollups["production_write_count"] == 0
assert {item["no_write_only"] for item in data["execution_rehearsals"]} == {True}
assert {item["live_apply_enabled"] for item in data["execution_rehearsals"]} == {False}
assert {item["live_read_enabled"] for item in data["post_write_verifier_rehearsals"]} == {False}
assert {item["rollback_drill_confirmed"] for item in data["rollback_drills"]} == {False}
def _copy_fixture(tmp_path: Path) -> dict:
source = json.loads(FIXTURE.read_text(encoding="utf-8"))
target = tmp_path / "ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
target.write_text(json.dumps(source, ensure_ascii=False), encoding="utf-8")
return source
def test_result_capture_owner_approved_execution_rehearsal_rejects_live_apply_enabled(tmp_path: Path) -> None:
source = _copy_fixture(tmp_path)
source["execution_rehearsals"][0]["live_apply_enabled"] = True
target = tmp_path / "ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
target.write_text(json.dumps(source, ensure_ascii=False), encoding="utf-8")
with pytest.raises(ValueError, match="must not enable live apply"):
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal(tmp_path)
def test_result_capture_owner_approved_execution_rehearsal_rejects_truth_write_flag(tmp_path: Path) -> None:
source = _copy_fixture(tmp_path)
source["execution_rehearsal_truth"]["result_capture_write_enabled"] = True
target = tmp_path / "ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
target.write_text(json.dumps(source, ensure_ascii=False), encoding="utf-8")
with pytest.raises(ValueError, match="live execution/send/write flags"):
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal(tmp_path)
def test_result_capture_owner_approved_execution_rehearsal_rejects_rollup_drift(tmp_path: Path) -> None:
source = _copy_fixture(tmp_path)
source["rollups"]["execution_rehearsal_count"] = 4
target = tmp_path / "ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
target.write_text(json.dumps(source, ensure_ascii=False), encoding="utf-8")
with pytest.raises(ValueError, match="rollup counts mismatch"):
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal(tmp_path)
def test_result_capture_owner_approved_execution_rehearsal_rejects_forbidden_display_terms(tmp_path: Path) -> None:
source = _copy_fixture(tmp_path)
source["operator_actions"][0]["operator_instruction"] = "work_window_transcript must never show"
target = tmp_path / "ai_agent_result_capture_owner_approved_execution_rehearsal_2026-06-14.json"
target.write_text(json.dumps(source, ensure_ascii=False), encoding="utf-8")
with pytest.raises(ValueError, match="forbidden display terms"):
load_latest_ai_agent_result_capture_owner_approved_execution_rehearsal(tmp_path)

View File

@@ -0,0 +1,40 @@
from __future__ import annotations
import pytest
from httpx import ASGITransport, AsyncClient
from src.main import app
@pytest.mark.asyncio
async def test_get_agent_result_capture_owner_approved_execution_rehearsal_api() -> None:
transport = ASGITransport(app=app)
async with AsyncClient(transport=transport, base_url="http://testserver") as client:
response = await client.get("/api/v1/agents/agent-result-capture-owner-approved-execution-rehearsal")
assert response.status_code == 200
data = response.json()
assert data["schema_version"] == "ai_agent_result_capture_owner_approved_execution_rehearsal_v1"
assert data["program_status"]["current_task_id"] == "P2-126"
assert data["program_status"]["next_task_id"] == "P2-127"
rollups = data["rollups"]
assert rollups["execution_rehearsal_count"] == 5
assert rollups["no_write_apply_check_count"] == 5
assert rollups["post_write_verifier_rehearsal_count"] == 5
assert rollups["rollback_drill_count"] == 5
assert rollups["blocked_live_apply_count"] == 6
assert rollups["operator_action_count"] == 5
assert rollups["writer_apply_count"] == 0
assert rollups["execution_apply_count"] == 0
assert rollups["receipt_write_count"] == 0
assert rollups["result_capture_write_count"] == 0
assert rollups["learning_write_count"] == 0
assert rollups["playbook_trust_write_count"] == 0
assert rollups["gateway_queue_write_count"] == 0
assert rollups["telegram_send_count"] == 0
assert rollups["bot_api_call_count"] == 0
assert rollups["production_write_count"] == 0
assert {item["no_write_only"] for item in data["execution_rehearsals"]} == {True}
assert {item["live_apply_enabled"] for item in data["execution_rehearsals"]} == {False}
assert {item["live_read_enabled"] for item in data["post_write_verifier_rehearsals"]} == {False}