From e805380b82bd50d5e8e573cb2d24da50ac826f70 Mon Sep 17 00:00:00 2001 From: Justin Kausel Date: Tue, 21 Apr 2026 13:40:22 -0400 Subject: [PATCH] Discover plugin commands during CLI dispatch --- cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli.py b/cli.py index 966c63c0bf..0292a2b943 100644 --- a/cli.py +++ b/cli.py @@ -1890,8 +1890,8 @@ _skill_commands = scan_skill_commands() def _get_plugin_cmd_handler_names() -> set: """Return plugin command names (without slash prefix) for dispatch matching.""" try: - from hermes_cli.plugins import get_plugin_manager - return set(get_plugin_manager()._plugin_commands.keys()) + from hermes_cli.plugins import get_plugin_commands + return set(get_plugin_commands().keys()) except Exception: return set()