(name: string)
| 106 | * Replaces @ with - to prevent ambiguity in the agentName@teamName format. |
| 107 | */ |
| 108 | export function sanitizeAgentName(name: string): string { |
| 109 | return name.replace(/@/g, '-') |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Gets the path to a team's directory |
no outgoing calls
no test coverage detected