“Generate CLI ASCII art logos and banners with box drawing borders, block characters, and ANSI 24-bit gradients, plus runnable scripts and integration code. Use when the user needs a terminal logo, colored ASCII banner, figlet-style title, or CLI startup welcome page.”
scripts/generate_logo.py明确输入
auto-cliCommand Line Interface█)/ 细线条(#/*)/ 无颜色╔═╗║ ║╚═╝ 或纯文本生成结果
集成到 CLI
main/bin/__main__)启动时输出一次NO_COLOR=1--no-color 参数在支持 TrueColor 的终端(macOS Terminal / iTerm2 / VS Code 终端)效果最佳。
python3 scripts/generate_logo.py --text auto-cli --subtitle "Command Line Interface"
常用参数:
python3 scripts/generate_logo.py \
--text auto-cli \
--subtitle "Command Line Interface" \
--width 46 \
--palette spec-kit \
--frame box
--no-color 切换)banner.txt(无颜色)banner.ansi.txt(带颜色)renderBanner()(在你的 CLI 里按环境输出)cat banner.ansi.txt to verify color renderingcat banner.txt to verify alignment without ANSINO_COLOR=1 and --no-color