Add local settings for Bash permissions in Claude configuration

- Introduced a new JSON configuration file to define permissions for various Bash commands.
- Allowed specific commands such as netstat, findstr, ss, tasklist, and wmic for enhanced process management.
This commit is contained in:
2026-03-02 23:02:50 +01:00
parent 34b4d84dc2
commit 0e69247840
3 changed files with 261 additions and 1776 deletions

View File

@@ -0,0 +1,12 @@
{
"permissions": {
"allow": [
"Bash(netstat:*)",
"Bash(findstr:*)",
"Bash(ss -tlnp:*)",
"Bash(tasklist:*)",
"Bash(wmic process where \"ProcessId=2600\" get CommandLine)",
"Bash(wmic process:*)"
]
}
}