forked from
oppi.li/claude-code
source dump of claude code
1import type { LocalCommandResult } from '../../commands.js'
2import type { ToolUseContext } from '../../Tool.js'
3
4export 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}