From 03b2239e22741c0274a6981341f6cd1e3309d233 Mon Sep 17 00:00:00 2001 From: cpacker Date: Thu, 15 Jan 2026 18:12:59 -0800 Subject: [PATCH] fix: remove client-side Skill tool from Incognito baseTools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skill is a client-side tool attached at runtime by the CLI, not a server-side base tool. Including it in baseTools caused agent creation to fail on fresh accounts with "Tools not found by name: {'Skill'}". 🤖 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta --- src/agent/defaults.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agent/defaults.ts b/src/agent/defaults.ts index fe1bf1c..7f08ef3 100644 --- a/src/agent/defaults.ts +++ b/src/agent/defaults.ts @@ -43,7 +43,7 @@ export const DEFAULT_AGENT_CONFIGS: Record = { name: "Incognito", description: INCOGNITO_DESCRIPTION, initBlocks: ["skills", "loaded_skills"], // Only skills blocks, no personal memory - baseTools: ["web_search", "conversation_search", "fetch_webpage", "Skill"], // No memory tool + baseTools: ["web_search", "conversation_search", "fetch_webpage"], // No memory tool }, };