(text: string)
| 74 | } |
| 75 | |
| 76 | function structuredTextOutput(text: string): StructuredToolOutput { |
| 77 | return { |
| 78 | schema: 'xcodebuildmcp.output.debug-command-result', |
| 79 | schemaVersion: '1', |
| 80 | result: { |
| 81 | kind: 'debug-command-result', |
| 82 | didError: false, |
| 83 | error: null, |
| 84 | command: 'test', |
| 85 | outputLines: [text], |
| 86 | }, |
| 87 | }; |
| 88 | } |
| 89 | |
| 90 | function streamedToolResult(opts: Partial<ToolInvokeResult> = {}): ToolInvokeResult { |
| 91 | return { |
no outgoing calls
no test coverage detected