v0.1.0-pre.018

This commit is contained in:
2026-07-24 19:34:54 +02:00
parent 3e1d034633
commit f965fcc58a
14 changed files with 8604 additions and 123 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 != 101:
if reserved_count != 100:
violations.append(
Violation(
"KH_EX007",
"kb-lib/src/executor",
1,
f"expected 101 reserved executor boundaries, found {reserved_count}",
f"expected 100 reserved executor boundaries, found {reserved_count}",
)
)
return violations