Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /**
* @module scripts/agentic
* @description Barrel export for the agentic workflow bounded context.
*
* This module exposes typed helpers that extract, validate, and inventory
* the analysis artifacts produced by the 14 agentic news workflows.
*
* @author Hack23 AB
* @license Apache-2.0
*/
export {
type ArtifactFamily,
type ArtifactDefinition,
type GateCheckResult,
type GateValidationResult,
FAMILY_A_ARTIFACTS,
FAMILY_B_ARTIFACTS,
FAMILY_C_ARTIFACTS,
FAMILY_D_ARTIFACTS,
ALL_REQUIRED_ARTIFACTS,
REQUIRED_ARTIFACT_FILENAMES,
MERMAID_REQUIRED_ARTIFACTS,
PASS2_REQUIRED_ARTIFACTS,
STUB_PLACEHOLDERS,
RECOGNISED_AGENCIES,
EVIDENCE_URL_HOSTS,
DOK_ID_PATTERN,
EVIDENCE_PATTERN,
} from './artifact-inventory.js';
export {
validateAnalysisGate,
checkArtifactExistence,
checkPerDocumentCoverage,
checkNoStubs,
checkEvidenceCitations,
checkMermaidDiagrams,
checkPass2Evidence,
checkFamilyCStructure,
checkFamilyDStructure,
checkPirStatus,
checkStatskontoretEvidence,
extractDokIds,
} from './analysis-gate.js';
|