/** * Direct CLI Tool Commands * * Exposes soleil-ai-review-engine tools (query, context, impact, cypher) as direct CLI commands. * Bypasses MCP entirely — invokes LocalBackend directly for minimal overhead. * * Usage: * soleil-ai-review-engine query "authentication flow" * soleil-ai-review-engine context --name "validateUser" * soleil-ai-review-engine impact --target "AuthService" --direction upstream * soleil-ai-review-engine cypher "MATCH (n:Function) RETURN n.name LIMIT 10" * * Note: Output goes to stderr because LadybugDB's native module captures stdout * at the OS level during init. This is consistent with augment.ts. */ export declare function queryCommand(queryText: string, options?: { repo?: string; context?: string; goal?: string; limit?: string; content?: boolean; }): Promise; export declare function contextCommand(name: string, options?: { repo?: string; file?: string; uid?: string; content?: boolean; }): Promise; export declare function impactCommand(target: string, options?: { direction?: string; repo?: string; depth?: string; includeTests?: boolean; }): Promise; export declare function cypherCommand(query: string, options?: { repo?: string; }): Promise;