From 9aaeb7ebd8d2b502999ef49fd0125bfa8b596592 Mon Sep 17 00:00:00 2001 From: James Wrigley Date: Mon, 16 Mar 2026 22:12:52 +0100 Subject: [PATCH] Add support for -h in the CLI --- nanobot/cli/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index 9d3c78b..8172ad6 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -38,6 +38,7 @@ from nanobot.utils.helpers import sync_workspace_templates app = typer.Typer( name="nanobot", + context_settings={"help_option_names": ["-h", "--help"]}, help=f"{__logo__} nanobot - Personal AI Assistant", no_args_is_help=True, )