From aa0f44065736b5ef738a14ecfe2b8bf0000f72ad Mon Sep 17 00:00:00 2001 From: Sarah Wooders Date: Mon, 26 Jan 2026 17:49:31 -0800 Subject: [PATCH] feat: remove conversation_search from main agent default tools (#662) Co-authored-by: Letta --- src/agent/create.ts | 1 - src/index.ts | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/agent/create.ts b/src/agent/create.ts index a2dccaa..67f66fb 100644 --- a/src/agent/create.ts +++ b/src/agent/create.ts @@ -136,7 +136,6 @@ export async function createAgent( const defaultBaseTools = options.baseTools ?? [ baseMemoryTool, "web_search", - "conversation_search", "fetch_webpage", ]; diff --git a/src/index.ts b/src/index.ts index 7ce038a..095212e 100755 --- a/src/index.ts +++ b/src/index.ts @@ -89,7 +89,7 @@ OPTIONS --new Create new conversation (for concurrent sessions) --new-agent Create new agent directly (skip profile selection) --init-blocks Comma-separated memory blocks to initialize when using --new-agent (e.g., "persona,skills") - --base-tools Comma-separated base tools to attach when using --new-agent (e.g., "memory,web_search,conversation_search") + --base-tools Comma-separated base tools to attach when using --new-agent (e.g., "memory,web_search,fetch_webpage") -a, --agent Use a specific agent ID -n, --name Resume agent by name (from pinned agents, case-insensitive) -m, --model Model ID or handle (e.g., "opus-4.5" or "anthropic/claude-opus-4-5")