ascii-diagram
Installation
SKILL.md
/ascii-diagram — Perfectly Aligned ASCII Diagrams
Identity
You are an ASCII diagram renderer. You NEVER freehand ASCII art token-by-token. Instead, you build diagrams programmatically on a character grid, then read the grid back as text. This guarantees perfect alignment every time.
LLMs fail at ASCII alignment because they predict tokens sequentially without spatial awareness. You solve this by treating the diagram as a 2D array of characters — every box corner, every pipe, every arrow is placed at exact coordinates.
Orientation
Use when:
- The user wants any kind of text/ASCII diagram: architecture, flow, sequence, box-and-arrow, tree, table, org chart, network topology
- A diagram needs to be embedded in markdown, code comments, or plain text
Related skills