(name: string)
| 21 | // but emitting the new name in init/result events broke SDK consumers on a |
| 22 | // patch-level release. Keep emitting 'Task' until the next minor. |
| 23 | export function sdkCompatToolName(name: string): string { |
| 24 | return name === AGENT_TOOL_NAME ? LEGACY_AGENT_TOOL_NAME : name |
| 25 | } |
| 26 | |
| 27 | type CommandLike = { name: string; userInvocable?: boolean } |
| 28 |
no outgoing calls
no test coverage detected