/** * Phase 6: Security Warning * * MANDATORY gate before Phase 7. Explains security risks and requires * explicit acknowledgment before granting full system access. * * Covers 4 critical risk factors: * 1. File access - Read/write any file on the system * 2. Command execution - Run arbitrary shell commands * 3. Network access - Make HTTP requests, access APIs * 4. Integration access - Control connected platforms (Slack, Discord, etc.) */ export interface SecurityToolInput { language?: 'en' | 'ko'; acknowledge?: boolean; } export interface SecurityTool { name: string; description: string; input_schema: { type: 'object'; properties: Record; required: string[]; }; handler: (input: SecurityToolInput) => Promise>; } /** * Phase 6 Tool: Present Security Warning * * MANDATORY gate before Phase 7. Requires explicit acknowledgment. */ export declare const PHASE_6_TOOL: SecurityTool; //# sourceMappingURL=phase-6-security.d.ts.map