spa/.claude/skills/thread-manager/dist/tools/create-thread.d.ts

9 lines
365 B
TypeScript

import { ToolDefinition, ToolInvocation } from '../types';
import { ThreadManager } from '../core/thread-manager';
export declare const toolDefinition: ToolDefinition;
export declare const toolHandler: (invocation: ToolInvocation, threadManager: ThreadManager) => Promise<{
thread: import("../types").Thread;
message: string;
launchCommand: string;
}>;