/** * Cortex MCP CLI Commands * * This module provides CLI commands for testing and using the MCP system. */ import { Command } from "commander"; /** * Ensure Cortex workspace exists with error fallback */ export declare function ensureCortexWorkspace(projectPath: string): Promise; /** * Add MCP commands to the CLI * * Note: Workflow commands (spec, plan, tasks, etc.) are now accessed via MCP prompts * in your AI assistant (e.g., /cortex.spec in Cursor). CLI only provides init and start. */ export declare function addMCPCommands(program: Command): void; /** * Execute a complete development task with AI collaboration workflow * Uses proper MCP tool calling pattern as recommended by Context7 */ export declare function executeTask(description: string, projectPath: string, options: { draftPr?: boolean; baseBranch?: string; }): Promise; //# sourceMappingURL=mcp-commands.d.ts.map