v0.1.0-pre.016

This commit is contained in:
2026-07-24 18:19:27 +02:00
parent a818c4a60e
commit 252fe51e34
17 changed files with 1830 additions and 67 deletions

View File

@@ -438,13 +438,13 @@ def audit_reserved_executor_scaffolds(root: pathlib.Path) -> list[Violation]:
"reserved executor must build only an explicit zero-instruction plan",
)
)
if reserved_count != 103:
if reserved_count != 102:
violations.append(
Violation(
"KH_EX007",
"kb-lib/src/executor",
1,
f"expected 103 reserved executor boundaries, found {reserved_count}",
f"expected 102 reserved executor boundaries, found {reserved_count}",
)
)
return violations