(agent: AgentDefinition)
| 41 | * `- type: whenToUse (Tools: ...)`. |
| 42 | */ |
| 43 | export function formatAgentLine(agent: AgentDefinition): string { |
| 44 | const toolsDescription = getToolsDescription(agent) |
| 45 | return `- ${agent.agentType}: ${agent.whenToUse} (Tools: ${toolsDescription})` |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Whether the agent list should be injected as an attachment message instead |
no test coverage detected