( outputStyleConfig: OutputStyleConfig | null, )
| 149 | } |
| 150 | |
| 151 | function getOutputStyleSection( |
| 152 | outputStyleConfig: OutputStyleConfig | null, |
| 153 | ): string | null { |
| 154 | if (outputStyleConfig === null) return null |
| 155 | |
| 156 | return `# Output Style: ${outputStyleConfig.name} |
| 157 | ${outputStyleConfig.prompt}` |
| 158 | } |
| 159 | |
| 160 | function getMcpInstructionsSection( |
| 161 | mcpClients: MCPServerConnection[] | undefined, |