From 1976204be3e8fe9bb96e877dd22861766dca20b6 Mon Sep 17 00:00:00 2001 From: Junwen Yin <39627445+junwen94@users.noreply.github.com> Date: Tue, 8 Sep 2026 11:57:14 +0100 Subject: [PATCH] chore: allow agents to file issues and push branches Add .claude/settings.json permitting gh issue create/comment/edit and git push without a prompt. AGENTS.md already expects agent-authored issues (with the attribution line) and agent-prepared pushed branches. --- .claude/settings.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..bcce79a --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,10 @@ +{ + "permissions": { + "allow": [ + "Bash(gh issue create:*)", + "Bash(gh issue comment:*)", + "Bash(gh issue edit:*)", + "Bash(git push:*)" + ] + } +}