(description: string)
| 71 | const DESCRIPTION_MAX_LENGTH = 60 |
| 72 | |
| 73 | function truncateDescription(description: string): string { |
| 74 | return truncateToWidth(description, DESCRIPTION_MAX_LENGTH) |
| 75 | } |
| 76 | |
| 77 | function generateAgentSuggestions( |
| 78 | agents: AgentDefinition[], |
no test coverage detected