From cc1cd84fae0372c0b2432eefda6a28b6e8400dbe Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 21 Aug 2026 12:07:20 +0800 Subject: [PATCH] =?UTF-8?q?fix(skill):=20=E5=9B=9E=E9=80=80=20description?= =?UTF-8?q?=20=E6=88=AA=E6=96=AD=E7=BC=A9=E7=9F=AD=EF=BC=8C=E6=96=87?= =?UTF-8?q?=E6=9C=AC=E7=B2=BE=E7=82=BC=E5=BA=94=E7=BB=9F=E4=B8=80=E5=9C=A8?= =?UTF-8?q?=E6=8A=80=E8=83=BD=E6=96=87=E4=BB=B6=E6=9C=AC=E8=BA=AB=E5=81=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pipeline_core/skill_loader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pipeline_core/skill_loader.py b/pipeline_core/skill_loader.py index 0b8e9de..5a656bc 100644 --- a/pipeline_core/skill_loader.py +++ b/pipeline_core/skill_loader.py @@ -312,7 +312,7 @@ class SkillLoader: return "" blocks = ["## 可用技能\n"] for s in skills: - blocks.append(f"- **[{SCOPE_TAG.get(s.scope, s.scope)}] {s.name}**: {s.description[:80]}") + blocks.append(f"- **[{SCOPE_TAG.get(s.scope, s.scope)}] {s.name}**: {s.description[:200]}") blocks.append("") return "\n".join(blocks) @@ -390,7 +390,7 @@ class SkillLoader: blocks = ["## 可用技能\n"] for s in skills: - blocks.append(f"- **[{SCOPE_TAG.get(s.scope, s.scope)}] {s.name}**: {s.description[:80]}") + blocks.append(f"- **[{SCOPE_TAG.get(s.scope, s.scope)}] {s.name}**: {s.description[:200]}") blocks.append("") return "\n".join(blocks)