hyperhive/hive-ag3nt/prompts/claude-settings.json
müde 8e7405db13 bypass-mode perms + deny list, drop allow-list plumbing
claude-settings.json now sets permissions.defaultMode=bypassPermissions
with a small deny list (WebFetch, WebSearch, Task, TodoWrite). The
per-flavor allow list and --tools / --allowedTools CLI flags are gone
— anything not denied auto-approves. mcp.rs loses ALLOWED_BUILTIN_TOOLS,
builtin_tools_arg, allow_list, allowed_mcp_tools. The extraMcpServers
allowedTools field is parsed for back-compat but no longer wired
anywhere; restrict via permissions.deny instead.
2026-05-16 15:17:30 +02:00

9 lines
214 B
JSON

{
"autoCompactEnabled": false,
"autoMemoryEnabled": false,
"effortLevel": "medium",
"permissions": {
"defaultMode": "bypassPermissions",
"deny": ["WebFetch", "WebSearch", "Task", "TodoWrite"]
}
}