From 3bcfbe73859ddf55e4cb2cda805ba8582b5b2237 Mon Sep 17 00:00:00 2001 From: Ashwin Bhat Date: Tue, 10 Jun 2025 19:36:52 -0400 Subject: [PATCH] feat: add MultiEdit to base_allowed_tools (#155) Add MultiEdit tool to the BASE_ALLOWED_TOOLS array to enable Claude Code to use the MultiEdit tool for making multiple edits to a single file in one operation. Co-authored-by: claude[bot] <209825114+claude[bot]@users.noreply.github.com> Co-authored-by: ashwin-ant --- src/create-prompt/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/create-prompt/index.ts b/src/create-prompt/index.ts index 4a9f17b..7b332f4 100644 --- a/src/create-prompt/index.ts +++ b/src/create-prompt/index.ts @@ -24,6 +24,7 @@ export type { CommonFields, PreparedContext } from "./types"; const BASE_ALLOWED_TOOLS = [ "Edit", + "MultiEdit", "Glob", "Grep", "LS",