Run a checklist against a document with thorough analysis and produce a validation reportIf checklist not provided, load checklist.md from workflow locationIf document not provided, ask user: "Which document should I validate?"Load both the checklist and documentFor EVERY checklist item, WITHOUT SKIPPING ANY:Read requirement carefullySearch document for evidence along with any ancillary loaded documents or artifacts (quotes with line numbers)Analyze deeply - look for explicit AND implied coverage
✓ PASS - Requirement fully met (provide evidence)
⚠ PARTIAL - Some coverage but incomplete (explain gaps)
✗ FAIL - Not met or severely deficient (explain why)
➖ N/A - Not applicable (explain reason)
DO NOT SKIP ANY SECTIONS OR ITEMSCreate validation-report-{timestamp}.md in document's folder
# Validation Report
**Document:** {document-path}
**Checklist:** {checklist-path}
**Date:** {timestamp}
## Summary
- Overall: X/Y passed (Z%)
- Critical Issues: {count}
## Section Results
### {Section Name}
Pass Rate: X/Y (Z%)
{For each item:}
[MARK] {Item description}
Evidence: {Quote with line# or explanation}
{If FAIL/PARTIAL: Impact: {why this matters}}
## Failed Items
{All ✗ items with recommendations}
## Partial Items
{All ⚠ items with what's missing}
## Recommendations
1. Must Fix: {critical failures}
2. Should Improve: {important gaps}
3. Consider: {minor improvements}
Present section-by-section summaryHighlight all critical issuesProvide path to saved reportHALT - do not continue unless user asksNEVER skip sections - validate EVERYTHINGALWAYS provide evidence (quotes + line numbers) for marksThink deeply about each requirement - don't rushSave report to document's folder automaticallyHALT after presenting summary - wait for user