From ab552920519b437221725c0a507d3f23fb06f283 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Mon, 27 Jul 2026 11:14:43 +0800 Subject: [PATCH] emrg: add /trigger to autocomplete command help registry /trigger (#197) was fully implemented but missing from the _COMMAND_HELP dict used for command autocomplete. Users typing /tr in TUI would not see it in the dropdown. --- emrg/client/widgets.py | 1 + 1 file changed, 1 insertion(+) diff --git a/emrg/client/widgets.py b/emrg/client/widgets.py index f8db36f6..268d499c 100644 --- a/emrg/client/widgets.py +++ b/emrg/client/widgets.py @@ -493,6 +493,7 @@ def render(self, ctx): "/clear": "Clear current session history and start fresh", "/rant": "Send feedback to the evolution system [/rant | /rant @ ]", "/model": "Switch LLM model [/model | /model ]", + "/trigger": "List or manually trigger scheduled tasks [/trigger | /trigger ]", "/skills": "List loaded skills (user + project)", "/version": "Show EMRG version and instance info", "/help": "Show keyboard shortcuts and commands",