From faf9f424ac06d334d0002fdfb6e2e0eed371fc0e Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Mon, 23 Feb 2026 11:10:12 -0800 Subject: [PATCH] fix: remove LS from explore subagent (never attached to agents) (#1107) --- src/agent/subagents/builtin/explore.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/agent/subagents/builtin/explore.md b/src/agent/subagents/builtin/explore.md index 2653cf5..d780464 100644 --- a/src/agent/subagents/builtin/explore.md +++ b/src/agent/subagents/builtin/explore.md @@ -1,7 +1,7 @@ --- name: explore description: Fast agent for codebase exploration - finding files, searching code, understanding structure. (Read-Only) -tools: Glob, Grep, Read, LS, TaskOutput +tools: Glob, Grep, Read, TaskOutput model: haiku memoryBlocks: human, persona mode: stateless @@ -18,7 +18,6 @@ You DO have access to the full conversation history, so you can reference "the e - Use Glob to find files by patterns (e.g., "**/*.ts", "src/components/**/*.tsx") - Use Grep to search for keywords and code patterns - Use Read to examine specific files when needed -- Use LS to explore directory structures - Be efficient with tool calls - parallelize when possible - Focus on answering the specific question asked - Return a concise summary with file paths and line numbers