diff options
Diffstat (limited to '.opencode/tool/foo.ts')
| -rw-r--r-- | .opencode/tool/foo.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.opencode/tool/foo.ts b/.opencode/tool/foo.ts new file mode 100644 index 000000000..3d350de10 --- /dev/null +++ b/.opencode/tool/foo.ts @@ -0,0 +1,11 @@ +import z from "zod/v4" + +export default { + description: "foo tool for fooing", + args: { + foo: z.string().describe("foo"), + }, + async execute() { + return "Hey fuck you!" + }, +} |
