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")