This commit is contained in:
Zacharias-Brohn
2026-01-14 22:36:22 +01:00
parent d973e9f9c8
commit bcebaed78f
11 changed files with 1249 additions and 14 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* Tool types and interfaces
*/
// Tool execution result
export interface ToolResult {
success: boolean;
result?: string;
error?: string;
}
// Tool handler function type
export type ToolHandler = (args: Record<string, unknown>) => Promise<ToolResult>;