/** * @startsimpli/ui validation toolkit (768w.16.10.1). * * Surfaces a Foundry tenant's machine review of AI-generated content — the AI * judge verdict plus deterministic auto-checks — as a pass/warn/fail checklist, * and RECOMPUTES the deterministic checks over the reviewer's *edited* content * (so validation tracks the current draft, not the stale original). * * `checks.ts` is pure + framework-free (importable in a Node/LLM/n8n context); * `ValidationChecklist` is presentational + BYO-data. Light-weight (React + * lucide only), so it rides the main components barrel like the health blocks — * no dedicated subpath (unlike document-editor, which is subpathed only because * it drags react-markdown). */ export { runContentChecks, overallStatus, wordCount, tagCount, extractUrls, hostOf, DEFAULT_HYPE_WORDS, type ContentCheck, type CheckLocation, type ContentFields, type ContentChecksConfig, type CheckStatus, type Band, } from './checks'; export { verbatimOverlap, normWords, type OverlapResult } from './overlap'; export { ValidationChecklist } from './ValidationChecklist'; export type { ValidationChecklistProps, JudgeVerdict, JudgeIssue, ValidationOverride, } from './ValidationChecklist';