Files
opencode/packages/plugin/src/tool.ts
2025-09-18 05:42:59 -04:00

20 lines
404 B
TypeScript

import { z } from "zod/v4"
export type ToolContext = {
sessionID: string
messageID: string
agent: string
abort: AbortSignal
}
export function tool<Args extends z.ZodRawShape>(input: {
description: string
args: Args
execute(args: z.infer<z.ZodObject<Args>>, context: ToolContext): Promise<string>
}) {
return input
}
tool.schema = z
export type ToolDefinition = ReturnType<typeof tool>