/** * Architecture Decision Record protocol — thin wrapper delegating to the * canonical pure validator. * * This file fills a long-standing gap: every other CLEO pipeline stage had * a TS validator, but the architecture_decision stage (added when RCSD was * renamed to RCASD) never got one. The ADR markdown spec at * `protocols-markdown/architecture-decision.md` defines ADR-001..008 MUST * requirements — all enforced by the pure validator in * `../../orchestration/protocol-validators.ts`. * * @task T260 — create the missing ADR protocol validator */ import { type ArchitectureDecisionOptions, type ProtocolValidationResult } from '../../orchestration/protocol-validators.js'; /** Validate architecture-decision protocol for a task. */ export declare function validateArchitectureDecisionTask(taskId: string, opts: { strict?: boolean; } & ArchitectureDecisionOptions): Promise; /** Validate architecture-decision protocol from a manifest file. */ export declare function checkArchitectureDecisionManifest(manifestFile: string, opts: { strict?: boolean; } & ArchitectureDecisionOptions): Promise; //# sourceMappingURL=architecture-decision.d.ts.map