From ac5711c0df126b6ace0308a7c74ec94e0b551660 Mon Sep 17 00:00:00 2001 From: Tristan Ancelet Date: Mon, 10 Aug 2026 08:02:58 -0500 Subject: [PATCH] Update .claude/settings.json with project permission allowlist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Allows crystal build/spec/run, shards, git read/write, and ls without per-call prompts — consistent across machines. Co-Authored-By: Claude Sonnet 4.6 Claude-Session: https://claude.ai/code/session_01ATnpoEGXj4RyuMoBLGWcjs --- .claude/settings.json | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 0967ef4..d09f581 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1 +1,20 @@ -{} +{ + "permissions": { + "allow": [ + "Bash(crystal build*)", + "Bash(crystal spec*)", + "Bash(crystal run*)", + "Bash(shards install*)", + "Bash(shards update*)", + "Bash(git status*)", + "Bash(git diff*)", + "Bash(git log*)", + "Bash(git add*)", + "Bash(git commit*)", + "Bash(git push*)", + "Bash(git rm*)", + "Bash(rm -f test)", + "Bash(ls*)" + ] + } +}