From 3849bec7de440e01124dae422a24bcc3a0563755 Mon Sep 17 00:00:00 2001 From: kurihada Date: Wed, 17 Dec 2025 14:53:35 +0800 Subject: [PATCH] =?UTF-8?q?refactor(core):=20=E6=9B=B4=E6=96=B0=E5=86=85?= =?UTF-8?q?=E7=BD=AE=E5=91=BD=E4=BB=A4=E7=9A=84=20agent=20=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - /test, /fix, /commit 使用 general agent - /explain 使用 explore agent (更适合代码解释) - /help 使用 guide agent (更适合帮助信息) --- packages/core/src/commands/builtin/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/src/commands/builtin/index.ts b/packages/core/src/commands/builtin/index.ts index ca9f7b0..1d761d4 100644 --- a/packages/core/src/commands/builtin/index.ts +++ b/packages/core/src/commands/builtin/index.ts @@ -127,7 +127,7 @@ Provide a clear, structured explanation that includes: 2. How it works - Step by step breakdown 3. Key concepts - Important patterns or techniques used 4. Examples - Practical usage examples if applicable`, - agent: 'general', + agent: 'explore', subtask: false, source: 'builtin', }; @@ -178,7 +178,7 @@ Topic: $ARGUMENTS If a specific command is mentioned, provide detailed help for that command. Otherwise, list all available commands with their descriptions.`, - agent: 'general', + agent: 'guide', subtask: false, source: 'builtin', };