v0.1.0-pre.015

This commit is contained in:
2026-07-24 17:25:51 +02:00
parent 60a75c4434
commit a818c4a60e
26 changed files with 16723 additions and 103 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# file: scripts/audit_khadhroony_workspace_rules.py
# version: 8
# version: 9
"""Audit mechanically verifiable rules specific to khadhroony-bot3."""
@@ -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 != 104:
if reserved_count != 103:
violations.append(
Violation(
"KH_EX007",
"kb-lib/src/executor",
1,
f"expected 104 reserved executor boundaries, found {reserved_count}",
f"expected 103 reserved executor boundaries, found {reserved_count}",
)
)
return violations