(value: string)
| 202 | } |
| 203 | |
| 204 | function normalizeAgentLookupKey(value: string): string { |
| 205 | return value.replace(/[\u200B-\u200D\uFEFF]/g, "").trim().toLowerCase(); |
| 206 | } |
| 207 | |
| 208 | function resolveAgentConfigKey(opencodeConfig: OpenCodeConfig, agentName: string): string { |
| 209 | opencodeConfig.agent ??= {}; |
no test coverage detected