/** * @fileoverview OR Detector Plugin (SPEC Section 8.4) * * Detects OR patterns in input text and emits warnings. * * Per PLG-*: * - PLG-1: Creates run-scope hooks * - PLG-2: Inspector may only modify diagnostics * * @module plugins/or-detector */ import type { PipelinePlugin } from "./types.js"; /** * Detects OR patterns, emits warnings. * * Per SPEC Section 8.4: * - Inspector plugin (observe only) * - Emits warnings for detected OR patterns * - Helps identify potential branching in intent */ export declare const orDetectorPlugin: PipelinePlugin; //# sourceMappingURL=or-detector.d.ts.map