From 1cd49b438d1da1acab92ae781a03cd4b6e981948 Mon Sep 17 00:00:00 2001 From: LIghtJUNction Date: Fri, 10 Apr 2026 22:31:05 +0800 Subject: [PATCH] refactor(cli): remove logo from default CLI output Logo is now only shown in commands that have their own startup output (run, init), keeping other commands clean. --- astrbot/cli/__main__.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/astrbot/cli/__main__.py b/astrbot/cli/__main__.py index 68e4e295e..4ba45df5f 100644 --- a/astrbot/cli/__main__.py +++ b/astrbot/cli/__main__.py @@ -77,9 +77,7 @@ def cli() -> None: """Astrbot Agentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. ✨ """ - click.echo(logo_tmpl) - click.echo(t("cli_welcome")) - click.echo(t("cli_version", version=__version__)) + pass @click.command()