MCPcopy Create free account
hub / github.com/codeaashu/claude-code / call

Function call

src/commands/rewind/rewind.ts:4–13  ·  view source on GitHub ↗
(
  _args: string,
  context: ToolUseContext,
)

Source from the content-addressed store, hash-verified

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}
14
15

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected