From partme-ai-full-stack-skills
Generates reusable ASCII-only text template library (titles, dividers, notice boxes, slogans/CTAs) with naming conventions and selection rules for consistent CLI, log, and README output. Use on explicit 'ascii-text-art-library' mention.
npx claudepluginhub partme-ai/full-stack-skills --plugin t2ui-skillsThis skill uses the workspace's default tool permissions.
**CRITICAL TRIGGER RULE**
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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, 分隔线, 标题, 提示框, 警告, 错误, 成功, 纯文本