From 7d8f1bdab3b80e35358718924ad381d9674c523e Mon Sep 17 00:00:00 2001 From: Aiden Cline <63023139+rekram1-node@users.noreply.github.com> Date: Sat, 25 Jul 2026 17:09:20 -0500 Subject: [PATCH] tweak(core): simplify skill tool description (#38900) --- packages/core/src/tool/skill.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/core/src/tool/skill.ts b/packages/core/src/tool/skill.ts index c397489204..48bdb0b17f 100644 --- a/packages/core/src/tool/skill.ts +++ b/packages/core/src/tool/skill.ts @@ -22,9 +22,7 @@ export const Output = Schema.Struct({ output: Schema.String, }) export const description = [ - "Load a specialized skill when the task at hand matches one of the available skills in the instructions.", - "", - "Use this tool to inject the skill's instructions and resources into the current conversation. The output may contain detailed workflow guidance as well as references to scripts, files, etc. in the same directory as the skill.", + "Load a specialized skill's instructions and resources into the current conversation when the task at hand matches its description.", "", "The skill ID must match one of the available skills in the instructions.", ].join("\n")