/** * Continue Configuration Generator * Generates MCP configuration for Continue AI assistant. * * Updated 2026-07-19 (Spec-16 R5.3): * Removed fictional /api/continue endpoint. Retained proper MCP stdio * transport. Continue has native MCP support via modelContextProtocolServers. * Skills: agents-standard, installed via code-audit install --agent agents. * * ✅ VERIFIED (2026-07-20): * Source: docs.continue.dev/customize/mcp-tools + docs.continue.dev/reference * Continue uses config.yaml (NOT a standalone mcp.json). MCP servers are * configured at the top-level mcpServers key in config.yaml — the old * experimental.modelContextProtocolServers key in JSON is deprecated. * Continue has migrated from .continue/config.json to .continue/config.yaml * (YAML is now the only format). This generator emits a YAML snippet for * .continue/config.yaml — users merge it into their existing config.yaml. */ import { BaseConfigGenerator, ConfigOutput } from './BaseConfigGenerator.js'; export declare class ContinueConfigGenerator extends BaseConfigGenerator { getToolName(): string; getFilename(): string; generateConfig(): ConfigOutput; getInstructions(): string; requiresAuth(): boolean; } //# sourceMappingURL=ContinueConfigGenerator.d.ts.map