#!/usr/bin/env node /** * RLM Analyzer - Unified Entry Point * * Auto-detects whether to run as MCP server or CLI: * - MCP mode: When stdin is not a TTY (piped input from MCP client) * - CLI mode: When stdin is a TTY (interactive terminal) * * This allows users to configure Claude Code with just: * { * "mcpServers": { * "rlm-analyzer": { * "command": "npx", * "args": ["rlm-analyzer"], * "env": { "GEMINI_API_KEY": "your_key" } * } * } * } * * And still use the CLI normally: * npx rlm-analyzer summary * npx rlm-analyzer arch --dir /path/to/project */ export {}; //# sourceMappingURL=main.d.ts.map