/** * The interactively-used subset of operations that MUST carry a longer-form * `description` (in addition to the mandatory `summary` that every operation * has). These are the operations a human or agent reaches for directly: * workflow lifecycle control, schedule CRUD, review handling, and worker * control. The remaining operations (raw storage, bulk mutations, diagnostics, * internal metrics) may omit `description`. * * This list is the single source of truth consumed by * `scripts/check-catalog-completeness.ts`. Update it together with the * operations it names. * * @module server/interactive-operations */ /** Operation names that must declare a `description`. */ export declare const INTERACTIVE_OPERATION_NAMES: ReadonlyArray; /** Whether the named operation must declare a longer-form `description`. */ export declare function isInteractiveOperation(name: string): boolean;