refactor(agent): rename run_plugin_command to run_slash_command to avoid confusion with execute_command (shell)

This commit is contained in:
jxxghp
2026-04-06 23:53:49 +08:00
parent 7806267e92
commit a8fb4a6d84
5 changed files with 16 additions and 16 deletions

View File

@@ -29,7 +29,7 @@ class QueryPluginCapabilitiesTool(MoviePilotTool):
name: str = "query_plugin_capabilities"
description: str = (
"Query the capabilities of installed plugins, including supported commands and scheduled services. "
"Commands are slash-commands (e.g. /xxx) that can be executed via the run_plugin_command tool. "
"Commands are slash-commands (e.g. /xxx) that can be executed via the run_slash_command tool. "
"Scheduled services are periodic tasks that can be triggered via the run_scheduler tool. "
"Optionally specify a plugin_id to query a specific plugin, or omit to query all running plugins."
)