From 08586750767ad409e0788efb3d552c54b4c8ba6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9D=B4=EC=B6=A9=EC=98=81=20=EC=97=90=EC=9D=B4=EB=8B=B7?= =?UTF-8?q?=EC=84=9C=EB=B9=84=EC=8A=A4=EA=B0=9C=EB=B0=9C?= Date: Sat, 14 Mar 2026 18:29:53 +0900 Subject: [PATCH] fix: remove --permission-mode plan from reviewer args Plan mode causes Claude to spend all time on tool calls (Read/Grep) in -p mode, producing empty stdout. Reviewers receive full context (diff, plan, checklist) via the prompt, so file access is not required. Without --permission-mode, -p mode defaults to read-allowed, write-denied. Co-Authored-By: Claude Opus 4.6 --- cross_eval/config.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cross_eval/config.py b/cross_eval/config.py index 6bd5015..e7b81fe 100644 --- a/cross_eval/config.py +++ b/cross_eval/config.py @@ -62,10 +62,7 @@ _CLAUDE_CODER_ARGS = list(_CLAUDE_BASE_ARGS) + [ "bypassPermissions", ] -_CLAUDE_REVIEW_ARGS = list(_CLAUDE_BASE_ARGS) + [ - "--permission-mode", - "plan", -] +_CLAUDE_REVIEW_ARGS = list(_CLAUDE_BASE_ARGS) _CODER_SYSTEM_PROMPT = ( "You are a senior software engineer implementing code changes.\n"