feat: add composable final-report validator for reviewer and reconciliation handoffs (Closes #327)

Introduce assess_final_report_validator as a single task-kind entry point
with structured rule findings for reviewer mutation wording, validation
proof, linked-issue consistency, baseline requirements, and reconciliation
handoff schema checks.

Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
This commit is contained in:
2026-07-07 05:01:15 -04:00
co-authored by Claude Opus 4.8
parent 5e145957a5
commit f1757fe590
4 changed files with 1165 additions and 1 deletions
+7 -1
View File
@@ -115,4 +115,10 @@ def test_merge_pr_template_references_workflow():
def test_start_issue_template_references_work_issue_workflow():
text = (SKILL_DIR / "templates" / "start-issue.md").read_text(encoding="utf-8")
assert "workflows/work-issue.md" in text
assert "workflows/work-issue.md" in text
def test_final_report_validator_exported():
from review_proofs import assess_final_report_validator
assert callable(assess_final_report_validator)