| 3 | import * as os from 'os'; |
| 4 | |
| 5 | export interface WindsurfConfig { |
| 6 | contextProvider?: string; |
| 7 | api?: string; |
| 8 | apiKey?: string; |
| 9 | mcp?: { |
| 10 | configPath: string; |
| 11 | }; |
| 12 | } |
| 13 | |
| 14 | export function generateWindsurfConfig(backendUrl: string, apiKey?: string, useMCP = false, mcpServerPath?: string): WindsurfConfig { |
| 15 | if (useMCP) { |
nothing calls this directly
no outgoing calls
no test coverage detected