skills/ascii-skills/ascii-text-art-library/SKILL.md
Generate a reusable ASCII-only text template library (titles, dividers, notice boxes, slogans/CTA), with naming conventions and selection rules for consistent CLI/log/README output. Use when the user needs ASCII art templates, text banners, console formatting, or decorative text elements.
npx skillsauth add partme-ai/full-stack-skills ascii-text-art-libraryInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
CRITICAL TRIGGER RULE
ascii-text-art-library.Trigger phrases include:
TITLE_COMPACT_A, WARN_BOX_BRunning scripts/generate_templates.py --width 60:
--- TITLE_COMPACT_A ---
============================================================
Section Title
============================================================
--- WARN_BOX_B ---
+----------------------------------------------------------+
| WARNING: Check disk space before proceeding |
+----------------------------------------------------------+
--- DIVIDER_THIN_A ---
------------------------------------------------------------
python3 scripts/generate_templates.py --width 80 --language en --tone seriouspython3 scripts/generate_templates.py --width 80 --validate — confirms all lines <= width, no trailing spaces, correct namingTITLE_COMPACT_A)# 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
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)
scripts/generate_templates.py: generate a baseline template set for a given width (local preview)examples/templates-80.mdEnglish: ascii-text-art-library, templates, ascii, divider, banner, notice box, warning, error, success, plain text 中文: ascii-text-art-library, 模板库, ASCII, 分隔线, 标题, 提示框, 警告, 错误, 成功, 纯文本
development
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.
tools
Creates new uni-app projects via the official CLI or HBuilderX with Vue 2/Vue 3 template selection, manifest.json and pages.json configuration, and directory structure setup. Use when the user wants to scaffold a new uni-app project, initialize project files with a single command, or set up the development environment.
tools
Browses, installs, configures, and manages plugins from the uni-app plugin market (ext.dcloud.net.cn) including component plugins, API plugins, and template plugins with dependency handling. Use when the user needs to find and install uni-app plugins, configure plugin settings, manage plugin dependencies, or integrate third-party components.
tools
Develops native Android and iOS plugins for uni-app including module creation, JavaScript-to-native communication, and plugin packaging for distribution. Use when the user needs to build custom native modules, extend uni-app with native capabilities (camera, Bluetooth, sensors), or create publishable native plugins.