Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/engineering/m5_context_contracts.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# M5 Bounded Review-Context Contracts

This checkpoint fixed the v0.7.0 production contracts before implementation and remains the engineering-level boundary record. The implementation now exists on the active release branch; production-owner evidence and remaining real-OCR/stable-release limits are recorded in the active plan and test-evidence matrix. Public operator behavior is owned by [Bounded review context](../review-context.md).
This checkpoint fixed the v0.7.0 production contracts before implementation and remains the engineering-level boundary record. The implementation and current contracts live on `main`; production-owner evidence and explicit residual limits are recorded in the test-evidence matrix, while completed release evidence is archived in the execution history. Public operator behavior is owned by [Bounded review context](../review-context.md).

## Ownership and dependency direction

Expand Down
6 changes: 6 additions & 0 deletions tests/test_operations_docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ def test_documentation_indexes_route_to_canonical_owners() -> None:
engineering_index = (PROJECT_ROOT / "docs" / "engineering" / "README.md").read_text(
encoding="utf-8"
)
context_contracts = (
PROJECT_ROOT / "docs" / "engineering" / "m5_context_contracts.md"
).read_text(encoding="utf-8")
readme = README.read_text(encoding="utf-8")

for index in (docs_index, codex_index, engineering_index):
Expand Down Expand Up @@ -125,6 +128,9 @@ def test_documentation_indexes_route_to_canonical_owners() -> None:
assert "not a second source" in codex_index
assert "without duplicating their rules" in engineering_index
assert "docs/README.md" in readme
assert "current contracts live on `main`" in context_contracts
assert "active release branch" not in context_contracts
assert "active plan" not in context_contracts


def test_release_archive_reconciles_current_external_delivery_truth() -> None:
Expand Down
Loading