From 94d7ab3ca4aacb63385e5e77df29090621fc6794 Mon Sep 17 00:00:00 2001 From: James Meng Date: Mon, 19 Jan 2026 15:13:25 -0800 Subject: [PATCH] fix(batch): correct max tool calls in docs from 20 to 25 --- packages/opencode/src/tool/batch.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/tool/batch.txt b/packages/opencode/src/tool/batch.txt index 565eb4dd433..968a6c3f07c 100644 --- a/packages/opencode/src/tool/batch.txt +++ b/packages/opencode/src/tool/batch.txt @@ -6,7 +6,7 @@ Payload Format (JSON array): [{"tool": "read", "parameters": {"filePath": "src/index.ts", "limit": 350}},{"tool": "grep", "parameters": {"pattern": "Session\\.updatePart", "include": "src/**/*.ts"}},{"tool": "bash", "parameters": {"command": "git status", "description": "Shows working tree status"}}] Notes: -- 1–20 tool calls per batch +- 1–25 tool calls per batch - All calls start in parallel; ordering NOT guaranteed - Partial failures do not stop other tool calls - Do NOT use the batch tool within another batch tool.