/** * Agent adapter: GitHub Copilot / VS Code * * MCP config : .vscode/mcp.json (project-level) * Hint file : .github/copilot-instructions.md * * Note: VS Code uses "servers" as the top-level key, not "mcpServers". * * Docs: https://code.visualstudio.com/docs/copilot/chat/mcp-servers */ import type { IUi } from "../ui.js"; import type { AgentPreset } from "./types.js"; export declare const preset: AgentPreset; interface InitParams { ui: IUi; cwd: string; } export declare function init({ ui, cwd }: InitParams): Promise; export {};