From 06f47fa54032d539b215c4b58d82564a6fa4aa48 Mon Sep 17 00:00:00 2001 From: Olu B Date: Tue, 14 Jul 2026 10:53:56 -0400 Subject: [PATCH] fix: standardize --config help text across CLI commands --- nanobot/cli/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index 5900d7e4..c1df2c91 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -1301,7 +1301,7 @@ def trigger( trigger_id: str = typer.Argument(..., help="Trigger ID returned by /trigger"), message: str | None = typer.Argument(None, help="Message to deliver; stdin is used when omitted"), workspace: str | None = typer.Option(None, "--workspace", "-w", help="Workspace directory"), - config: str | None = typer.Option(None, "--config", "-c", help="Config file path"), + config: str | None = typer.Option(None, "--config", "-c", help="Path to config file"), ): """Deliver a local trigger message to its bound chat session.""" from nanobot.triggers.local_store import ( @@ -2169,7 +2169,7 @@ def agent( message: str = typer.Option(None, "--message", "-m", help="Message to send to the agent"), session_id: str = typer.Option("cli:direct", "--session", "-s", help="Session ID"), workspace: str | None = typer.Option(None, "--workspace", "-w", help="Workspace directory"), - config: str | None = typer.Option(None, "--config", "-c", help="Config file path"), + config: str | None = typer.Option(None, "--config", "-c", help="Path to config file"), markdown: bool = typer.Option(True, "--markdown/--no-markdown", help="Render assistant output as Markdown"), logs: bool = typer.Option(False, "--logs/--no-logs", help="Show nanobot runtime logs during chat"), ):