From ac33c7f56ee848ca379daf2d2748dba8d99f0136 Mon Sep 17 00:00:00 2001 From: tobetchi Date: Sat, 11 Jul 2026 12:18:47 +0900 Subject: [PATCH] fix grok-implementer permission-mode from acceptEdits to auto Grok CLI 0.2.93 does not auto-approve write tool calls with --permission-mode acceptEdits, causing writes to be canceled. Falling back to --permission-mode auto resolves this. --- agents/grok-implementer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agents/grok-implementer.md b/agents/grok-implementer.md index e8fa784..ea1e188 100644 --- a/agents/grok-implementer.md +++ b/agents/grok-implementer.md @@ -54,7 +54,7 @@ T=$(command -v gtimeout || command -v timeout || true) ${T:+$T 600} grok --prompt-file "$SPEC" \ -m grok-4.5 \ - --permission-mode acceptEdits \ + --permission-mode auto \ --output-format plain \ --cwd "$(pwd)" \ > /tmp/grok-final-$$.txt 2>&1