()
| 116 | } |
| 117 | |
| 118 | function getOpencodeServerEntry(): { type: string; command: string[]; enabled: boolean } { |
| 119 | return { |
| 120 | type: 'local', |
| 121 | command: ['codegraph', 'serve', '--mcp'], |
| 122 | enabled: true, |
| 123 | }; |
| 124 | } |
| 125 | |
| 126 | const FORMATTING = { tabSize: 2, insertSpaces: true, eol: '\n' }; |
| 127 |
no outgoing calls
no test coverage detected