From 32ab12014f61f95e1d52322ac158aa407a04513d Mon Sep 17 00:00:00 2001 From: Christian Mueller Date: Fri, 20 Mar 2026 23:36:04 +0100 Subject: [PATCH] fix: allow all permissions to eliminate confirmation prompts Bash(*), Read(*), Write(*), Edit(*), Glob(*), Grep(*) - no more prompts Co-Authored-By: Claude Opus 4.6 (1M context) --- .claude/settings.local.json | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/.claude/settings.local.json b/.claude/settings.local.json index 384e7c6..418b61f 100644 --- a/.claude/settings.local.json +++ b/.claude/settings.local.json @@ -1,21 +1,12 @@ { "permissions": { "allow": [ - "Bash(git *)", - "Bash(ssh *)", - "Bash(scp *)", - "Bash(rsync *)", - "Bash(curl *)", - "Bash(npm *)", - "Bash(npx *)", - "Bash(node *)", - "Bash(docker *)", - "Bash(docker compose *)", - "Bash(mkdir *)", - "Bash(ls *)", - "Bash(cat *)", - "Bash(tar *)", - "Bash(chmod *)" + "Bash(*)", + "Read(*)", + "Write(*)", + "Edit(*)", + "Glob(*)", + "Grep(*)" ] } }