Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
Add quality gate framework with schema validation (JSON Schema via jsonschema library), pattern validation (regex-based), multi-gate QualityValidator with SQLite persistence, HaltingPolicyEngine with budget/iteration/improvement checks, and RefinementLoop for iterative execute-validate-halt cycles. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
338 B
Python
14 lines
338 B
Python
"""
|
|
Quality gate implementations.
|
|
|
|
Provides SchemaValidationGate and PatternValidationGate.
|
|
"""
|
|
|
|
from markitect.prompts.quality.gates.schema_gate import SchemaValidationGate
|
|
from markitect.prompts.quality.gates.pattern_gate import PatternValidationGate
|
|
|
|
__all__ = [
|
|
"SchemaValidationGate",
|
|
"PatternValidationGate",
|
|
]
|