Skip to content

Commit 56d729f

Browse files
committed
fix(settings): open write permissions for .rs/.toml + git ops for agents
Previous agents stalled because they could write .md but not .rs/.toml, and couldn't run git add/commit/checkout. https://claude.ai/code/session_01SbYsmmbPf9YQuYbHZN52Zh
1 parent d6adb2b commit 56d729f

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

.claude/settings.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,31 @@
33
"permissions": {
44
"allow": [
55
"Edit(**/*.md)",
6+
"Edit(**/*.rs)",
7+
"Edit(**/*.toml)",
68
"Write(**/*.md)",
9+
"Write(**/*.rs)",
10+
"Write(**/*.toml)",
711
"Bash(cat >> .claude/board/AGENT_LOG.md:*)",
812
"Bash(git push -u origin:*)",
913
"Bash(git fetch origin:*)",
1014
"Bash(git pull origin:*)",
15+
"Bash(git checkout:*)",
16+
"Bash(git checkout -b:*)",
17+
"Bash(git add:*)",
18+
"Bash(git commit:*)",
19+
"Bash(git log:*)",
20+
"Bash(git diff:*)",
21+
"Bash(git status:*)",
22+
"Bash(git branch:*)",
1123
"Bash(cargo test:*)",
12-
"Bash(cargo check:*)"
24+
"Bash(cargo check:*)",
25+
"Bash(cargo run:*)",
26+
"Bash(ls:*)",
27+
"Bash(wc:*)",
28+
"Bash(grep:*)",
29+
"Bash(find:*)",
30+
"mcp__github__create_pull_request"
1331
],
1432
"ask": [],
1533
"deny": [

0 commit comments

Comments
 (0)