mcp-subagents
Version:
Multi-Agent AI Orchestration via Model Context Protocol - Access specialized CLI AI agents (Aider, Qwen, Gemini, Goose, etc.) with intelligent fallback and configuration
17 lines • 772 B
TypeScript
import { AgentDetector as BaseDetector } from './utils/detection.js';
import type { ConfigManager } from './config.js';
export declare class AgentDetector extends BaseDetector {
constructor(configManager?: ConfigManager);
detectAll(): Promise<{
name: "qwen" | "gemini" | "aider" | "goose" | "codex" | "opencode" | "claude";
available: boolean;
authStatus: "ready" | "needs_login" | "needs_api_key" | "needs_setup";
authInstructions: string;
inputMethod: "flag" | "stdin" | "positional" | "subcommand";
version?: string | undefined;
autoAcceptFlag?: string | undefined;
modelFlag?: string | undefined;
requiresSubcommand?: string | undefined;
}[]>;
}
//# sourceMappingURL=detector.d.ts.map