/** * Shared constants used across the orchestration stack. */ export declare const TASK_FULLY_COMPLETE = "TASK_FULLY_COMPLETE"; /** * NO SIMULATIONS POLICY * * This system executes REAL operations only. Simulations, mocks, fake data, * and hypothetical scenarios are strictly forbidden in production output. * * Forbidden patterns: * - "simulated", "simulation", "hypothetical", "theoretical" * - "fake", "mock", "dummy", "pretend", "imaginary" * - "would be", "could be", "might be" (speculative results) * - Creating fictional reports, summaries, or deliverables * - Generating random/synthetic data disguised as real results */ export declare const NO_SIMULATIONS_POLICY = "STRICT NO-SIMULATION POLICY:\n- Execute REAL operations only - NO simulations, NO mocks, NO fake data\n- Never create fictional reports, summaries, or deliverables\n- Never generate \"simulated\" results or hypothetical outcomes\n- If a task cannot be executed for real, report inability clearly\n- All outputs must be genuine results from actual execution\n- Forbidden words in deliverables: \"simulated\", \"hypothetical\", \"theoretical\", \"mock\", \"fake\"\n"; /** * Patterns that indicate simulation/fake content in output */ export declare const SIMULATION_PATTERNS: RegExp[]; /** * Check if content contains simulation indicators */ export declare function containsSimulationIndicators(content: string): boolean; /** * Extract simulation indicator matches from content */ export declare function findSimulationIndicators(content: string): string[]; //# sourceMappingURL=constants.d.ts.map