| 12 | type AgentId = (typeof options.agents)[number]; |
| 13 | |
| 14 | export interface AgentFileTarget { |
| 15 | agentIds: AgentId[]; |
| 16 | displayName: string; |
| 17 | id: AgentId | "universal"; |
| 18 | path: string; |
| 19 | promptLabel: string; |
| 20 | representativeAgentId: AgentId; |
| 21 | } |
| 22 | |
| 23 | const normalizeAgentName = (name: string) => |
| 24 | name.replace(/ Code$/u, "").replace(/ Agent$/u, ""); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…