(skippedClients: Array<{ client: string; reason: string }>)
| 102 | } |
| 103 | |
| 104 | function formatSkippedClients(skippedClients: Array<{ client: string; reason: string }>): string { |
| 105 | if (skippedClients.length === 0) { |
| 106 | return ''; |
| 107 | } |
| 108 | |
| 109 | return skippedClients.map((skipped) => `${skipped.client}: ${skipped.reason}`).join('; '); |
| 110 | } |
| 111 | |
| 112 | type AgentsGuidanceStatus = 'created' | 'updated' | 'no_change' | 'skipped' | 'error'; |
| 113 |
no outgoing calls
no test coverage detected