/** * Canonical compaction bounds shared between Zod schema validation and runtime enforcement. * * These constants are the single source of truth for agent-work-contract field limits. * The Zod schema in `src/schema-kernel/agent-work-contract.schema.ts` imports these values * for `.max()` validation, and `operations.ts` imports them for runtime bounding. * * @module bounds */ /** Maximum character length for contract briefing field. */ export declare const BRIEFING_LIMIT = 1200; /** Maximum character length for contract summary field. */ export declare const SUMMARY_LIMIT = 1200; /** Maximum character length for reinjection payload field. */ export declare const REINJECTION_LIMIT = 2400; /** Maximum array length for anchors and sourceRefs arrays. */ export declare const ANCHOR_LIMIT = 20; //# sourceMappingURL=bounds.d.ts.map