From dfab3d598be6462fef4c8f323c3fa3ef5c23e305 Mon Sep 17 00:00:00 2001 From: tegwick Date: Mon, 23 Feb 2026 05:40:11 +0100 Subject: [PATCH] feat(cli): add 'helper' alias for markitect helper command markitect helper now works as a short alias for markitect llm-helper, per the original plan specification. Co-Authored-By: Claude Sonnet 4.6 --- markitect/cli.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/markitect/cli.py b/markitect/cli.py index f4be3612..7929a6a7 100644 --- a/markitect/cli.py +++ b/markitect/cli.py @@ -7139,7 +7139,8 @@ try: helper_command, llm_catalog, llm_check, llm_default_command, llm_preference_command, ) - cli.add_command(helper_command) + cli.add_command(helper_command) # registers as llm-helper + cli.add_command(helper_command, name="helper") # short alias cli.add_command(llm_catalog) cli.add_command(llm_check) cli.add_command(llm_default_command)