(agentName: string, teamName: string)
| 36 | * Formats an agent ID in the format `agentName@teamName`. |
| 37 | */ |
| 38 | export function formatAgentId(agentName: string, teamName: string): string { |
| 39 | return `${agentName}@${teamName}` |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Parses an agent ID into its components. |
no outgoing calls
no test coverage detected