ascii-cli-logo-banner
$
npx mdskill add partme-ai/full-stack-skills/ascii-cli-logo-bannerRoutes ASCII banner requests to Python or figlet.js generators for CLI startup logos and branding.
- Helps create startup banners, ASCII logos, terminal welcome screens, or CLI branding for services.
- Integrates with Python built-in font skill or figlet.js/FIGfont skill for generation.
- Activates only when the user explicitly mentions the exact skill name 'ascii-cli-logo-banner'.
- Presents results by routing to appropriate generator based on user input and configuration.
SKILL.md
.github/skills/ascii-cli-logo-bannerView on GitHub ↗
--- name: ascii-cli-logo-banner description: "Entry point for ASCII CLI banners that routes to the Python built-in font skill or figlet.js/FIGfont skill. Use when the user wants a startup banner, ASCII logo, terminal welcome screen, or CLI branding for a service." license: Complete terms in LICENSE.txt --- ## When to use this skill **CRITICAL TRIGGER RULE** - Use this skill ONLY when the user explicitly mentions the exact skill name: `ascii-cli-logo-banner`. **Use this skill when the user says they want:** - A startup banner / logo / welcome screen for a CLI or service **Trigger phrases include:** - "ascii-cli-logo-banner" - "use ascii-cli-logo-banner" - "用 ascii-cli-logo-banner" - "使用 ascii-cli-logo-banner 生成启动 Banner" - "用 ascii-cli-logo-banner 做一个 ASCII Logo" ## Boundary - This skill is a routing/selection entry point. It does not provide its own generator implementation. - For built-in (no external font engine): use `ascii-cli-logo-banner-python`. - For TAAG/FIGlet style (FIGfont spec, smushing layouts): use `ascii-cli-logo-banner-figletjs`. ## How to use this skill ### Inputs (recommended) - brandName (required) - version (optional) - author (optional) - repoUrl / docsUrl (optional) - width (default 80) - slogan (optional, centered line under the logo) - hint (optional, centered line under the slogan) - glyph (ascii | block, default ascii) - center (default true) - rule (default true; set false for logo-only hero output) - style (block | outline | thin, default block) - colorMode (none | ansi256, default none; logo only in scripts) - includeCta (default true) ### Outputs (required) - bannerPlain: ASCII-only full banner (logo area + info block + horizontal rule) - compactPlain: compact banner for `width < 60` (single-line title + rule + 1-2 info lines) - plainTextFallback: no-color fallback when ANSI is enabled (same structure as bannerPlain) - embedNotes: 3-5 embedding notes (CLI start / service start / README / tickets) ### Steps 1. Decide width and fallback: - Default `width=80` - If `width < 60`, output `compactPlain` and skip the big-letter logo 2. Generate an ASCII-only logo: - Avoid full-width characters and ambiguous-width Unicode - Ensure each line is `<= width` 3. Compose the banner structure (recommended order): - Logo area (or a single-line title in compact mode) - Horizontal rule: exactly `width` characters (`-` or `=`) - Info block: Name / Version / Repo / Docs / Author (only include fields provided) - Optional CTA: e.g. `Run: <command>` or `Docs: <url>` 4. Optional ANSI coloring (must not break alignment): - Colorize visible characters only; do not colorize spaces - Always provide `plainTextFallback` ### Routing Decision | Need | Skill to use | Why | |------|-------------|-----| | Simple built-in font, no npm/node deps | `ascii-cli-logo-banner-python` | Uses a built-in 5x5 font, Python only | | TAAG/FIGlet fonts, layout smushing | `ascii-cli-logo-banner-figletjs` | Full FIGfont spec via figlet.js | **Example**: For a quick startup banner with `brandName="MyApp"` and no external font engine needed, route to `ascii-cli-logo-banner-python`. For a FIGlet "Standard" or "Big" font banner with horizontal smushing, route to `ascii-cli-logo-banner-figletjs`. ## Script (optional) - Use `ascii-cli-logo-banner-python` for the Python implementation. - Use `ascii-cli-logo-banner-figletjs` for the figlet.js/FIGfont implementation. ## Examples - See examples in the two implementation skills: - `ascii-cli-logo-banner-python/examples/*` - `ascii-cli-logo-banner-figletjs/examples/*` ## Quality checklist 1. Does not wrap or misalign at 80 columns; no trailing spaces 2. Copy-pastes cleanly into logs/email/tickets 3. Never prints secrets (tokens, internal URLs, personal data) ## Keywords **English:** ascii, banner, logo, cli, terminal, startup, welcome, plain text, ansi, no-color **中文:** ASCII, 启动横幅, 终端 Banner, CLI Logo, 欢迎页, 纯文本, ANSI 上色, 无色回退
More from partme-ai/full-stack-skills
- adobe-xd"Guides creation of UI/UX designs, interactive prototypes, reusable components, and design specs in Adobe XD. Use when the user asks about Adobe XD artboards, prototype links, repeat grids, component states, design tokens export, or developer handoff."
- angular"Provides comprehensive guidance for Angular framework including components, modules, services, dependency injection, routing, forms, and TypeScript integration. Use when the user asks about Angular, needs to create Angular applications, implement Angular components, or work with Angular features."
- ansible"Provides comprehensive guidance for Ansible automation including playbooks, roles, inventory, and module usage. Use when the user asks about Ansible, needs to automate IT tasks, create Ansible playbooks, or manage infrastructure with Ansible."
- ant-design-mini"Builds mini-program UIs with Ant Design Mini components for Alipay and WeChat mini-programs. Covers Button, Form, List, Modal, Tabs, NavBar, and 60+ components with theme customization and CSS variable theming. Use when the user needs to create mini-program interfaces with Ant Design Mini, configure themes, or implement mini-program-specific UI patterns."
- ant-design-mobile"Builds React mobile UIs with Ant Design Mobile (antd-mobile) components including Button, Form, List, Modal, Picker, Tabs, PullToRefresh, InfiniteScroll, and 50+ mobile-optimized components. Use when the user needs to create mobile-first React interfaces, implement mobile navigation, forms, or data display with Ant Design Mobile."
- ant-design-react"Builds enterprise React UIs with Ant Design (antd) including 60+ components (Button, Form, Table, Select, Modal, Message), design tokens, TypeScript support, and ConfigProvider theming. Use when the user needs to create React applications with Ant Design, build forms with validation, display data tables, or customize the Ant Design theme."
- ant-design-vueProvides comprehensive guidance for Ant Design Vue (AntDV) component library for Vue 3. Covers installation, usage, API reference, templates, and all component categories. Use when building enterprise-class UI with Vue 3 and Ant Design.
- api-doc-generator"Generate API documentation by scanning Controller classes, extracting endpoint URLs, HTTP methods, parameters, and response structures, then producing standardized docs from templates. Use when the user explicitly mentions generating API documentation, creating API docs, scanning interfaces, or documenting REST APIs. Do not trigger for generic documentation requests without explicit API mention."
- appium"Provides comprehensive guidance for Appium mobile testing including mobile app automation, element location, gestures, and cross-platform testing. Use when the user asks about Appium, needs to test mobile applications, automate mobile apps, or write Appium test scripts."
- ascii-ansi-colorizer"Add an ANSI color layer to existing ASCII/plain-text output (gradient/rainbow/highlights) with alignment-safe rules and a required no-color fallback. Use when the user wants to colorize terminal output, add rainbow effects to CLI text, or style ASCII art with ANSI colors."