Documentation
README
AC Criteria Validator
Validate acceptance criteria and determine feature completion.
Purpose
Validates that implemented features meet their acceptance criteria, determining when passes can transition from false to true.
Quick Start
from scripts.criteria_validator import CriteriaValidator
validator = CriteriaValidator(project_dir)
result = await validator.validate_feature("auth-001")
print(result.passes) # True/False
print(result.criteria_results)
Validation Result
This is the opening of the README. Read the full README on GitHub.