diff --git a/cli/src/commands/onboard.ts b/cli/src/commands/onboard.ts index 3c85a12f..b73cfcad 100644 --- a/cli/src/commands/onboard.ts +++ b/cli/src/commands/onboard.ts @@ -248,7 +248,7 @@ export async function onboard(opts: OnboardOptions): Promise { p.note( [ - `Run now: ${pc.cyan("paperclipai run")} (onboard + doctor + start in one command)`, + `Run: ${pc.cyan("paperclipai run")}`, `Reconfigure later: ${pc.cyan("paperclipai configure")}`, `Diagnose setup: ${pc.cyan("paperclipai doctor")}`, ].join("\n"), diff --git a/cli/src/utils/banner.ts b/cli/src/utils/banner.ts index d8bc7f15..16d3a987 100644 --- a/cli/src/utils/banner.ts +++ b/cli/src/utils/banner.ts @@ -1,11 +1,12 @@ import pc from "picocolors"; const PAPERCLIP_ART = [ - " ____ _ ____ _____ ____ ____ _ ___ ____ ", - "| _ \\ / \\ | _ \\| ____| _ \\ / ___| | |_ _| _ \\ ", - "| |_) / _ \\ | |_) | _| | |_) | | | | | || |_) |", - "| __/ ___ \\| __/| |___| _ <| |___| |___ | || __/ ", - "|_| /_/ \\_\\_| |_____|_| \\_\\\\____|_____|___|_| ", + "██████╗ █████╗ ██████╗ ███████╗██████╗ ██████╗██╗ ██╗██████╗ ", + "██╔══██╗██╔══██╗██╔══██╗██╔════╝██╔══██╗██╔════╝██║ ██║██╔══██╗", + "██████╔╝███████║██████╔╝█████╗ ██████╔╝██║ ██║ ██║██████╔╝", + "██╔═══╝ ██╔══██║██╔═══╝ ██╔══╝ ██╔══██╗██║ ██║ ██║██╔═══╝ ", + "██║ ██║ ██║██║ ███████╗██║ ██║╚██████╗███████╗██║██║ ", + "╚═╝ ╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═════╝╚══════╝╚═╝╚═╝ ", ] as const; const TAGLINE = "Open-source orchestration for zero-human companies"; @@ -14,7 +15,7 @@ export function printPaperclipCliBanner(): void { const lines = [ "", ...PAPERCLIP_ART.map((line) => pc.cyan(line)), - pc.blue(" ------------------------------------------------------"), + pc.blue(" ───────────────────────────────────────────────────────"), pc.bold(pc.white(` ${TAGLINE}`)), "", ];