14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import type { LocalCommandResult } from '../../commands.js'
|
|
import type { ToolUseContext } from '../../Tool.js'
|
|
|
|
export async function call(
|
|
_args: string,
|
|
context: ToolUseContext,
|
|
): Promise<LocalCommandResult> {
|
|
if (context.openMessageSelector) {
|
|
context.openMessageSelector()
|
|
}
|
|
// Return a skip message to not append any messages.
|
|
return { type: 'skip' }
|
|
}
|