v0.4.6
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env python3
|
||||
# file: scripts/audit_khadhroony_workspace_rules.py
|
||||
# version: 12
|
||||
# version: 13
|
||||
|
||||
"""Audit mechanically verifiable rules specific to khadhroony-bot3."""
|
||||
|
||||
@@ -210,7 +210,7 @@ def audit_kb_lib_symbol_prefixes(root: pathlib.Path) -> list[Violation]:
|
||||
|
||||
|
||||
def audit_reserved_decoder_scaffolds(root: pathlib.Path) -> list[Violation]:
|
||||
"""Reject temporary decoder migration markers and incomplete reserved decoders."""
|
||||
"""Reject incomplete reserved decoder contracts."""
|
||||
|
||||
violations: list[Violation] = []
|
||||
decoder_root = root / "kb-lib/src/decoder"
|
||||
@@ -281,7 +281,7 @@ def audit_reserved_decoder_scaffolds(root: pathlib.Path) -> list[Violation]:
|
||||
|
||||
|
||||
def audit_reserved_materializer_scaffolds(root: pathlib.Path) -> list[Violation]:
|
||||
"""Reject temporary materializer markers and incomplete reserved materializers."""
|
||||
"""Reject incomplete reserved materializer contracts."""
|
||||
|
||||
violations: list[Violation] = []
|
||||
materializer_root = root / "kb-lib/src/materializer"
|
||||
@@ -362,7 +362,7 @@ def audit_reserved_materializer_scaffolds(root: pathlib.Path) -> list[Violation]
|
||||
|
||||
|
||||
def audit_reserved_executor_scaffolds(root: pathlib.Path) -> list[Violation]:
|
||||
"""Reject temporary executor markers and incomplete reserved executors."""
|
||||
"""Reject incomplete reserved executor contracts."""
|
||||
|
||||
violations: list[Violation] = []
|
||||
executor_root = root / "kb-lib/src/executor"
|
||||
|
||||
Reference in New Issue
Block a user