import type { Capability, McpServerInfo } from '@redonvn/cli-protocol'; /** * Detect AI-Agent CLI có sẵn trên máy. Trả: * - capabilities: tổng hợp gồm 3 nhóm: * 1. Tool runtime cơ bản: fs / bash / grep / glob / webfetch (luôn có) * 2. Spawn CLI: claude / codex / gemini (có nếu binary cài sẵn) * 3. LLM proxy: llm-claude / llm-codex / llm-gemini (có nếu user `redai oauth `) * - cliDetected: { claude:'1.0.5', ... } cho dashboard hiển thị */ export declare function detectCapabilities(): { capabilities: Capability[]; cliDetected: Record; mcpServers: McpServerInfo[]; };