From 71d4357ca7ec495cdff7e99e496dfe501944b6a6 Mon Sep 17 00:00:00 2001 From: Soulter <905617992@qq.com> Date: Thu, 15 Jan 2026 16:08:58 +0800 Subject: [PATCH] chore: remove skills prompt --- astrbot/core/pipeline/process_stage/utils.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/astrbot/core/pipeline/process_stage/utils.py b/astrbot/core/pipeline/process_stage/utils.py index 3da3e5ffb..d1dd22139 100644 --- a/astrbot/core/pipeline/process_stage/utils.py +++ b/astrbot/core/pipeline/process_stage/utils.py @@ -29,13 +29,13 @@ Rules: SANDBOX_MODE_PROMPT = ( "You have access to a sandboxed environment and can execute shell commands and Python code securely." - "Your have extended skills library, such as PDF processing, image generation, data analysis, etc. " - "Before handling complex tasks, please retrieve and review the documentation in the in /app/skills/ directory. " - "If the current task matches the description of a specific skill, prioritize following the workflow defined by that skill." - "Use `ls /app/skills/` to list all available skills. " - "Use `cat /app/skills/{skill_name}/SKILL.md` to read the documentation of a specific skill." - "SKILL.md might be large, you can read the description first, which is located in the YAML frontmatter of the file." - "Use shell commands such as grep, sed, awk to extract relevant information from the documentation as needed.\n" + # "Your have extended skills library, such as PDF processing, image generation, data analysis, etc. " + # "Before handling complex tasks, please retrieve and review the documentation in the in /app/skills/ directory. " + # "If the current task matches the description of a specific skill, prioritize following the workflow defined by that skill." + # "Use `ls /app/skills/` to list all available skills. " + # "Use `cat /app/skills/{skill_name}/SKILL.md` to read the documentation of a specific skill." + # "SKILL.md might be large, you can read the description first, which is located in the YAML frontmatter of the file." + # "Use shell commands such as grep, sed, awk to extract relevant information from the documentation as needed.\n" "Note:\n" "1. If you use shell, your command will always runs in the /home//workspace directory.\n" "2. If you use IPython, you would better use absolute paths when dealing with files to avoid confusion.\n"