Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions chezmoi/.chezmoitemplates/claude-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,26 +54,7 @@
"sandbox": {
"enabled": true,
"enableWeakerNetworkIsolation": true,
"excludedCommands": ["docker *"],
"filesystem": {
"allowWrite": [
"~/.cache",
"~/.cargo/registry",
"~/.gradle",
"~/.local/lib",
"~/.local/share/uv",
"~/.m2",
"~/.mempalace",
"~/.memsearch",
"~/.npm",
"~/.yarn",
"~/Library/Caches",
"~/Library/Python",
"~/Library/pnpm",
"~/go/pkg",
"~/wiki"
]
}
"excludedCommands": ["docker *", "git *", "ssh *"]

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The filesystem configuration block under sandbox was completely removed in this change. This appears to be an accidental deletion, as the PR title only mentions adding excluded commands. Removing this block will prevent Claude from writing to these directories, which may break various tools and integrations. Please restore the filesystem block.

    "excludedCommands": ["docker *", "git *", "ssh *"],
    "filesystem": {
      "allowWrite": [
        "~/.cache",
        "~/.cargo/registry",
        "~/.gradle",
        "~/.local/lib",
        "~/.local/share/uv",
        "~/.m2",
        "~/.mempalace",
        "~/.memsearch",
        "~/.npm",
        "~/.yarn",
        "~/Library/Caches",
        "~/Library/Python",
        "~/Library/pnpm",
        "~/go/pkg",
        "~/wiki"
      ]
    }

},
"statusLine": {
"type": "command",
Expand Down
Loading