Summary
生成 CLI 的 ASCII 艺术 Logo/Banner(支持 box drawing 边框、█ 块字符、ANSI 24-bit 渐变色)并提供可运行脚本与集成代码。适用于“做一个像 Spec Kit CLI 的终端 Logo / 彩色 ASCII banner / figlet 风格标题 / CLI 启动欢迎页”等需求。
full-stack-skills/ascii-skills
生成 CLI 的 ASCII 艺术 Logo/Banner(支持 box drawing 边框、█ 块字符、ANSI 24-bit 渐变色)并提供可运行脚本与集成代码。适用于“做一个像 Spec Kit CLI 的终端 Logo / 彩色 ASCII banner / figlet 风格标题 / CLI 启动欢迎页”等需求。
npx skills add full-stack-skills/ascii-skills --skill cli-ascii-logo
生成 CLI 的 ASCII 艺术 Logo/Banner(支持 box drawing 边框、█ 块字符、ANSI 24-bit 渐变色)并提供可运行脚本与集成代码。适用于“做一个像 Spec Kit CLI 的终端 Logo / 彩色 ASCII banner / figlet 风格标题 / CLI 启动欢迎页”等需求。
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Generate ASCII art diagrams using PlantUML text mode. Use when user asks to create ASCII diagra…
9.7K installsThis skill should be used when the user asks to "make an ASCII animation", "build a terminal/CL…
16 installsASCII art: pyfiglet, cowsay, boxes, image-to-ascii.
413 installsASCII video: convert video/audio to colored ASCII MP4/GIF.
357 installsASCII diagram patterns for architecture, workflows, file trees, and data visualizations. Use wh…
297 installsValidate ASCII diagram alignment in markdown. TRIGGERS - diagram alignment, ASCII art, box-draw…
210 installsOther skills from full-stack-skills/ascii-skills · top by installs.
npx skills add full-stack-skills/ascii-skills
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
main
Files included with this skill beyond the listing page.
SKILL.md
3,641 B
SUMMARY.md
307 B
scripts/generate_logo.py- 名称:如 auto-cli - 副标题:如 Command Line Interface - 终端宽度:默认 80(可根据项目/CI 输出调整) - 风格:粗块(█)/ 细线条(#/*)/ 无颜色 - 边框:╔═╗║ ║╚═╝ 或纯文本 - 配色:青 → 紫(Spec Kit 风格)、青 → 蓝、橙 → 粉等
- 直接运行脚本生成(最可靠):见下方“快速开始” - 或按需在目标语言里生成(Node/Python/Go),核心是: - 先得到“等宽字符画”(多行字符串) - 再做边框拼接 - 再做逐字符渐变(输出 ANSI TrueColor 序列)
- 运行入口(main/bin/main)启动时输出一次 - 支持禁用颜色: - 尊重 NO_COLOR=1 - 提供 --no-color 参数 - CI 环境默认关闭(可按需打开)
在支持 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 里按环境输出)
确保开发环境已安装必要的依赖和工具。
根据项目需求进行基础配置。
按照示例代码实现核心功能。
运行测试确保功能正常。
完成开发后进行部署和监控。