chore(claude): expand permissions and require sandbox

- Adds `Bash(*)` to the allow list so routine shell commands run without
  prompting.
- Sets `sandbox.failIfUnavailable=true` so Claude Code aborts rather
  than silently running unsandboxed when the sandbox cannot initialize.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-12 22:18:54 +02:00
parent 12a38b7e6a
commit 00c668b595

View File

@@ -1,5 +1,8 @@
{ {
"permissions": { "permissions": {
"allow": [
"Bash(*)"
],
"ask": [ "ask": [
"Skill(update-config)", "Skill(update-config)",
"Skill(update-config:*)" "Skill(update-config:*)"
@@ -7,6 +10,7 @@
}, },
"sandbox": { "sandbox": {
"enabled": true, "enabled": true,
"failIfUnavailable": true,
"autoAllowBashIfSandboxed": true "autoAllowBashIfSandboxed": true
} }
} }