Skip to content

Commit 1ce3732

Browse files
committed
default allowedTools to trust fs operations and bash
1 parent a2135a4 commit 1ce3732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli_agent_orchestrator/cli/commands/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def install(agent_source: str):
9595
allowed_tools = profile.allowedTools
9696
if allowed_tools is None:
9797
# Default: allow all built-in tools and all MCP server tools
98-
allowed_tools = ["@builtin"]
98+
allowed_tools = ["@builtin", "fs_*", "execute_bash"]
9999
if profile.mcpServers:
100100
for server_name in profile.mcpServers.keys():
101101
allowed_tools.append(f"@{server_name}")

0 commit comments

Comments
 (0)