From 32c94311918fc05b63918ade223a10b9ceaa7197 Mon Sep 17 00:00:00 2001 From: Re-bin Date: Fri, 13 Feb 2026 04:13:16 +0000 Subject: [PATCH] fix: align CLI session_id default to "cli:direct" for backward compatibility --- nanobot/cli/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nanobot/cli/commands.py b/nanobot/cli/commands.py index 4580fed..3158d29 100644 --- a/nanobot/cli/commands.py +++ b/nanobot/cli/commands.py @@ -410,7 +410,7 @@ def gateway( @app.command() def agent( message: str = typer.Option(None, "--message", "-m", help="Message to send to the agent"), - session_id: str = typer.Option("cli:default", "--session", "-s", help="Session ID"), + session_id: str = typer.Option("cli:direct", "--session", "-s", help="Session ID"), 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"), ):