From e00c95d4d64cb186f57341e29af51bca4245a540 Mon Sep 17 00:00:00 2001 From: ginnoir Date: Wed, 6 May 2026 02:10:38 -0500 Subject: [PATCH] Expand permission allowlist to reduce approval prompts Adds git add/commit/push and pnpm typecheck/format/format:check so routine dev-loop actions no longer require manual approval. Co-Authored-By: Claude Sonnet 4.6 --- .claude/settings.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 75329e6..2990625 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -6,7 +6,13 @@ "Bash(pnpm install *)", "Bash(pnpm build *)", "Bash(pnpm lint *)", - "Bash(pnpm dev *)" + "Bash(pnpm dev *)", + "Bash(pnpm typecheck)", + "Bash(pnpm format)", + "Bash(pnpm format:check)", + "Bash(git add *)", + "Bash(git commit *)", + "Bash(git push)" ] } }