feat: archive zoo_backup for home sync

This commit is contained in:
Patrick Plate
2026-06-24 19:27:05 +02:00
parent 02844e4c4a
commit 038e546963
133 changed files with 19953 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
const { parametersSchema: z, defineCustomTool } = require("@roo-code/types")
module.exports = defineCustomTool({
name: "hello_test",
description: "A simple test tool that returns a greeting. Used to verify custom tool loading works.",
parameters: z.object({
name: z.string().optional().describe("Name to greet. Defaults to 'World'"),
}),
async execute({ name }) {
return `Hello, ${name || "World"}! Custom tools are working. Time: ${new Date().toISOString()}`
},
})