( _args: string, context: ToolUseContext, )
| 2 | import type { ToolUseContext } from '../../Tool.js' |
| 3 | |
| 4 | export async function call( |
| 5 | _args: string, |
| 6 | context: ToolUseContext, |
| 7 | ): Promise<LocalCommandResult> { |
| 8 | if (context.openMessageSelector) { |
| 9 | context.openMessageSelector() |
| 10 | } |
| 11 | // Return a skip message to not append any messages. |
| 12 | return { type: 'skip' } |
| 13 | } |
| 14 | |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected