From 3afac506b2788fbc0ed85c7d64f7d940b138a6a1 Mon Sep 17 00:00:00 2001 From: Mark Wylde Date: Sat, 31 May 2025 00:13:14 +0100 Subject: [PATCH] Attempt to make this work --- src/claude/executor.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/claude/executor.ts b/src/claude/executor.ts index 384a245..02b7970 100644 --- a/src/claude/executor.ts +++ b/src/claude/executor.ts @@ -187,12 +187,12 @@ export class ClaudeExecutor { // Add allowed tools if specified if (tools.allowed.length > 0) { - args.push("--allowed-tools", tools.allowed.join(",")); + args.push("--allowedTools", tools.allowed.join(",")); } // Add disallowed tools if specified if (tools.disallowed.length > 0) { - args.push("--disallowed-tools", tools.disallowed.join(",")); + args.push("--disallowedTools", tools.disallowed.join(",")); } console.log("[CLAUDE-EXECUTOR] Claude Code command:", "claude", args.join(" "));