(text: string, max: number)
| 146 | } |
| 147 | |
| 148 | function truncate(text: string, max: number): string { |
| 149 | return text.length <= max ? text : text.slice(0, max) + "\n… (truncated)" |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Render the linked-repos block for the agent's environment details. Returns "" |
no outgoing calls
no test coverage detected