#!/usr/bin/env node /** * RLM Analyzer CLI * Command-line interface for code analysis * Supports multiple providers: Gemini (default), Amazon Bedrock, and Claude * * Usage: * rlm [options] * * Commands: * summary Get a codebase summary * arch Analyze architecture * deps Analyze dependencies * security Security analysis * perf Performance analysis * refactor Find refactoring opportunities * find Find symbol usages * explain Explain a file * ask Ask a custom question * config Configure API key * * Options: * --dir, -d Directory to analyze (default: current) * --provider, -p Provider to use (gemini|bedrock|claude) * --verbose, -v Show detailed output * --json Output as JSON * --help, -h Show help */ export declare function runCli(): Promise; //# sourceMappingURL=cli.d.ts.map