From 1704f73504f8ab55813734a440503b7ac1536476 Mon Sep 17 00:00:00 2001 From: goodboy Date: Wed, 4 Mar 2026 16:09:37 -0500 Subject: [PATCH] Add local `claude` settings for commit-msg perms Auto-allow the tool calls used by the `/commit-msg` skill so the workflow requires minimal user prompting. (this patch was generated in some part by [`claude-code`][claude-code-gh]) [claude-code-gh]: https://github.com/anthropics/claude-code --- .claude/settings.local.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .claude/settings.local.json diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 00000000..d2c8f9d9 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,15 @@ +{ + "permissions": { + "allow": [ + "Write(.claude/*commit_msg*)", + "Write(.claude/git_commit_msg_LATEST.md)", + "Bash(date *)", + "Bash(cp .claude/*)", + "Bash(git diff *)", + "Bash(git log *)", + "Bash(git status)" + ], + "deny": [], + "ask": [] + } +}