Files
opencode/.opencode/tool/foo.ts
2025-09-18 03:58:21 -04:00

12 lines
185 B
TypeScript

import z from "zod/v4"
export default {
description: "foo tool for fooing",
args: {
foo: z.string().describe("foo"),
},
async execute() {
return "Hey fuck you!"
},
}