ascii-text-art-library
When to use this skill
CRITICAL TRIGGER RULE
- Use this skill ONLY when the user explicitly mentions the exact skill name:
ascii-text-art-library.
Trigger phrases include:
- "ascii-text-art-library"
- "use ascii-text-art-library"
- "用 ascii-text-art-library 生成 ASCII 模板库"
- "使用 ascii-text-art-library 输出提示框/分隔线/标题样式"
Boundary
- Output templates + naming/selection rules only; do not modify repository files.
- ASCII-only by default to avoid ambiguous-width Unicode.
- Templates must be width-tunable (default 80 columns).
How to use this skill
Inputs
- width (default 80)
- language (zh | en, default zh)
- tone (serious | fun, default serious)
- categories (title/divider/info/warn/error/success/cta, default all)
- variantsPerCategory (default 2)
Outputs (required)
- templates: grouped by category (>= 2 variants per category)
- namingRules: e.g.
TITLE_COMPACT_A,WARN_BOX_B - usageRules: selection guidance + anti-spam thresholds
Inline Example Output
Running scripts/generate_templates.py --width 60:
--- TITLE_COMPACT_A ---
============================================================
Section Title
============================================================
--- WARN_BOX_B ---
+----------------------------------------------------------+
| WARNING: Check disk space before proceeding |
+----------------------------------------------------------+
--- DIVIDER_THIN_A ---
------------------------------------------------------------
Workflow
- Generate: Run
python3 scripts/generate_templates.py --width 80 --language en --tone serious - Review: Check generated templates grouped by category
- Validate: Run
python3 scripts/generate_templates.py --width 80 --validate— confirms all lines <= width, no trailing spaces, correct naming - Integrate: Copy chosen variants into project; reference by naming convention (e.g.,
TITLE_COMPACT_A)
Script Usage
# Generate all template categories at 80 columns
python3 scripts/generate_templates.py --width 80
# Generate only warning and error templates
python3 scripts/generate_templates.py --width 60 --categories warn,error
# Generate with fun tone
python3 scripts/generate_templates.py --width 80 --tone fun
Template Generation Logic (inline fallback)
When the script is unavailable, generate templates using these rules:
def title_compact(text, width=80, char='='):
rule = char * width
centered = text.center(width)
return f"{rule}\n{centered}\n{rule}"
def warn_box(text, width=80):
inner_w = width - 4 # account for "| " and " |"
top = '+' + '-' * (width - 2) + '+'
line = f'| {text:<{inner_w}} |'
return f"{top}\n{line}\n{top}"
# Usage:
# title_compact("My Section Title", 60)
# warn_box("WARNING: Check disk space", 60)
Script
scripts/generate_templates.py: generate a baseline template set for a given width (local preview)
Examples
examples/templates-80.md
Quality checklist
- Stable alignment at 80 columns; no trailing spaces
- Templates are semantically clear and not over-decorated
- Notice boxes support multi-line content and remain readable
Keywords
English: ascii-text-art-library, templates, ascii, divider, banner, notice box, warning, error, success, plain text 中文: ascii-text-art-library, 模板库, ASCII, 分隔线, 标题, 提示框, 警告, 错误, 成功, 纯文本
More from partme-ai/full-stack-skills
vite
Guidance for Vite using the official Guide, Config Reference, and Plugins pages. Use when the user needs Vite setup, configuration, or plugin selection details.
68element-plus-vue3
Provides comprehensive guidance for Element Plus Vue 3 component library including installation, components, themes, internationalization, and API reference. Use when the user asks about Element Plus for Vue 3, needs to build Vue 3 applications with Element Plus, or customize component styles.
63vue3
Guidance for Vue 3 using the official guide and API reference. Use when the user needs Vue 3 concepts, patterns, or API details to build components, apps, and tooling.
54electron
Build cross-platform desktop applications with Electron, covering main/renderer process architecture, IPC communication, BrowserWindow management, menus, tray icons, packaging, and security best practices. Use when the user asks about Electron, needs to create desktop applications, implement Electron features, or build cross-platform desktop apps.
51uniapp-project
Provides per-component and per-API examples with cross-platform compatibility details for uni-app, covering built-in components, uni-ui components, and APIs (network, storage, device, UI, navigation, media). Use when the user needs official uni-app components or APIs, wants per-component examples with doc links, or needs platform compatibility checks.
40ascii-cli-logo-banner
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.
38