v0.1.0-pre.020

This commit is contained in:
2026-07-24 22:01:07 +02:00
parent fa2d9d8ecd
commit 4190b2c0ce
84 changed files with 3314 additions and 274 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 != 100:
if reserved_count != 99:
violations.append(
Violation(
"KH_EX007",
"kb-lib/src/executor",
1,
f"expected 100 reserved executor boundaries, found {reserved_count}",
f"expected 99 reserved executor boundaries, found {reserved_count}",
)
)
return violations