From 6eb3cfe5bead6ca4545872a4e3ae28d7cb7913a0 Mon Sep 17 00:00:00 2001 From: mlogclub Date: Sun, 7 Jun 2026 19:47:47 +0800 Subject: [PATCH] feat: update banner text from "Shell AI" to "AGENT DESK" --- internal/bootstrap/banner.go | 12 ++++++------ internal/bootstrap/banner_test.go | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/internal/bootstrap/banner.go b/internal/bootstrap/banner.go index fe28835..ce709ad 100644 --- a/internal/bootstrap/banner.go +++ b/internal/bootstrap/banner.go @@ -27,13 +27,13 @@ func renderBanner(cfg config.Config) string { } return fmt.Sprintf(` - ____ _ _ _ _ ___ -/ ___|| |__ ___| | | / \ |_ _| -\___ \| '_ \ / _ \ | | / _ \ | | - ___) | | | | __/ | | / ___ \ | | -|____/|_| |_|\___|_|_| /_/ \_\___| + _ ____ _____ _ _ _____ ____ _____ ____ _ __ + / \ / ___| ____| \ | |_ _| | _ \| ____/ ___|| |/ / + / _ \| | _| _| | \| | | | | | | | _| \___ \| ' / + / ___ \ |_| | |___| |\ | | | | |_| | |___ ___) | . \ +/_/ \_\____|_____|_| \_| |_| |____/|_____|____/|_|\_\ -:: Shell AI :: +:: AGENT DESK :: Port : %d DB : %s diff --git a/internal/bootstrap/banner_test.go b/internal/bootstrap/banner_test.go index 6a704dc..ac92790 100644 --- a/internal/bootstrap/banner_test.go +++ b/internal/bootstrap/banner_test.go @@ -14,7 +14,7 @@ func TestRenderBanner(t *testing.T) { }) expected := []string{ - ":: Shell AI ::", + ":: AGENT DESK ::", "Port : 8083", "DB : sqlite", "Address : http://127.0.0.1:8083",