opencode/.opencode/tool/foo.ts

12 lines
185 B
TypeScript
Raw Normal View History

2025-09-18 15:58:21 +08:00
import z from "zod/v4"
export default {
description: "foo tool for fooing",
args: {
foo: z.string().describe("foo"),
},
async execute() {
return "Hey fuck you!"
},
}