[Bug] Sandbox policy violation: graphify tool accessing restricted /home/.msp.json path
Status Open
Reported on v2.1.220
Maintainer reply None cached
Activity 0 comments · opened Aug 4, 2026
Bug Description
Ran the /graphify skill on Claude Code (background job session). Every subsequent Bash tool call — including trivial ones like echo hello and pwd, unrelated to graphify itself — began failing with a sandbox (bubblewrap) permission error trying to create /home/.mcp.json, a path outside the sandbox's writable scope. The sandbox never recovered for the rest of the session; Bash was completely unusable afterward.
Environment Info
- Platform: linux
- Terminal: xterm-256color
- Version: 2.1.220
- Feedback ID: dbe55787-ddb7-4748-98d8-24f3eb0a9f1a
- Session type: background job
Errors
[
{
"tool": "Bash",
"command": "ls -la graphify-out/",
"exit_code": 1,
"stderr": "bwrap: Can't create file at /home/.mcp.json: Permission denied"
},
{
"tool": "Bash",
"command": "pwd",
"exit_code": 1,
"stderr": "bwrap: Can't create file at /home/.mcp.json: Permission denied"
},
{
"tool": "Bash",
"command": "echo hello",
"exit_code": 1,
"stderr": "bwrap: Can't create file at /home/.mcp.json: Permission denied"
}
]