From 378b8ca241a1ddf7f902bf6271280d8b2e59af68 Mon Sep 17 00:00:00 2001 From: "opencode-agent[bot]" Date: Fri, 10 Apr 2026 19:40:10 +0000 Subject: [PATCH] chore: generate --- packages/opencode/src/tool/ls.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/opencode/src/tool/ls.ts b/packages/opencode/src/tool/ls.ts index 6593157906..2453b6e9cd 100644 --- a/packages/opencode/src/tool/ls.ts +++ b/packages/opencode/src/tool/ls.ts @@ -45,7 +45,10 @@ export const ListTool = Tool.defineEffect( return { description: DESCRIPTION, parameters: z.object({ - path: z.string().describe("The absolute path to the directory to list (must be absolute, not relative)").optional(), + path: z + .string() + .describe("The absolute path to the directory to list (must be absolute, not relative)") + .optional(), ignore: z.array(z.string()).describe("List of glob patterns to ignore").optional(), }), execute: (params: { path?: string; ignore?: string[] }, ctx: Tool.Context) =>