From cf1bb967fdbd5ee125eb8b3e858c5ae82d112b88 Mon Sep 17 00:00:00 2001 From: minecraft1024a Date: Thu, 13 Nov 2025 18:46:36 +0800 Subject: [PATCH] =?UTF-8?q?feat(system):=20=E4=B8=BA=20system=20=E5=91=BD?= =?UTF-8?q?=E4=BB=A4=E6=B7=BB=E5=8A=A0=20prompt=20=E5=AD=90=E5=91=BD?= =?UTF-8?q?=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/built_in/system_management/plugin.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/built_in/system_management/plugin.py b/src/plugins/built_in/system_management/plugin.py index e3c7ddeb6..ff5a0f2bf 100644 --- a/src/plugins/built_in/system_management/plugin.py +++ b/src/plugins/built_in/system_management/plugin.py @@ -60,6 +60,8 @@ class SystemCommand(PlusCommand): await self._handle_schedule_commands(remaining_args) elif subcommand in ["help", "帮助"]: await self._show_help("all") + elif subcommand in ["prompt","提示词"]: + await self._handle_prompt_commands(remaining_args) else: await self.send_text(f"❌ 未知的子命令: {subcommand}\n使用 /system help 查看帮助")