Update ASCII art banners for CLI and wizard header

Replaces the previous ASCII art in both the CLI banner and the wizard header with a new, wider design and updates the label to 'OPENCLAW' for consistency.
This commit is contained in:
Gustavo Madeira Santana
2026-01-29 23:29:47 -05:00
parent 151ddd624b
commit 4ec9d98821
2 changed files with 12 additions and 15 deletions
+6 -7
View File
@@ -63,13 +63,12 @@ export function formatCliBannerLine(version: string, options: BannerOptions = {}
} }
const LOBSTER_ASCII = [ const LOBSTER_ASCII = [
"▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄", "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄",
"█████░█████░████░█░░░█░█████░░░░░█████░█░░░█", "██░▄▄▄░██░▄▄░██░▄▄▄██░▀████░▄▄▀██░████░▄▄▀█████░██",
"█░░░█░█░░░█░█░░░░░██░░█░█░░░░░█░░░░░█░░░█░█░░░█", "██░███░██░▀▀░██░▄▄▄██░█░█░██░█████░████░▀▀░██░█░█░█",
"█░░░█░█████░████░██░█░█░░░░░█░░░░░████░█░█░█", "██░▀▀▀░█░█████░▀▀▀████░██░▀▀▄██░▀▀░█░██░██▄▀▄▀▄██",
"█░░░█░█░░░░░█░░░░░█░░██░█░░░░░█░░░░░█░░░█░██░██", "▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
"█████░█░░░░░█████░█░░░█░█████░█████░█░░░█░█░░░█", " 🦞 OPENCLAW 🦞 ",
" 🦞 OPENCLAW 🦞 ",
" ", " ",
]; ];
+6 -8
View File
@@ -64,14 +64,12 @@ export function randomToken(): string {
export function printWizardHeader(runtime: RuntimeEnv) { export function printWizardHeader(runtime: RuntimeEnv) {
const header = [ const header = [
"▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓", "▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄",
"█████░█████░█████░█░░░█░█████░█░░░░░█████░█░░░█", "██░▄▄▄░██░▄▄░██░▄▄▄██░████░▄▄▀██░████░▄▄▀██░███░██",
"█░░██░░░█░█░░░░░██░░█░░░░░█░░░░░█░░░█░█░░░█", "████░██░▀▀░██░▄▄▄██░█░█░██░█████░████░▀▀░██░█░█░██",
"█░░░█░█████░████░██░█░█░░░░░█░░░░░█████░█░█░█", "█▀▀▀░██░█████░▀▀▀████░██░▀▀▄██░▀▀░█░████▄▀▄▀▄██",
"█░░░█░█░░░░░█░░░░░█░░██░█░░░░░█░░░░░█░░░█░██░██", "▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀",
"█████░█░░░░░█████░█░░░█░█████░█████░█░░░█░█░░░█", " 🦞 OPENCLAW 🦞 ",
"▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓",
" 🦞 FRESH DAILY 🦞 ",
" ", " ",
].join("\n"); ].join("\n");
runtime.log(header); runtime.log(header);