aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/claude
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/claude')
-rw-r--r--src/main/claude/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/claude/index.ts b/src/main/claude/index.ts
index d576c15..ef4050e 100644
--- a/src/main/claude/index.ts
+++ b/src/main/claude/index.ts
@@ -79,6 +79,10 @@ export async function sendMessage({
79 ...(session.phase === "implement" && { 79 ...(session.phase === "implement" && {
80 allowedTools: ["Bash(git status*)", "Bash(git log*)", "Bash(git diff*)"], 80 allowedTools: ["Bash(git status*)", "Bash(git log*)", "Bash(git diff*)"],
81 }), 81 }),
82 // Auto-allow MCP tools in research phase (where external data is most useful)
83 ...(session.phase === "research" && mcpServers && {
84 allowedTools: ["mcp__*"],
85 }),
82 }, 86 },
83 }); 87 });
84 88