Ascii canvas
Compose ASCII/Unicode diagrams, slideshows, infographics, playbooks, comic strips, flashcards, and other text-based visual artifacts from a topic, idea, or set of facts. Use when the user explicitly requests a diagram/visual/format (flowchart, slideshow, cheat sheet, infographic, timeline, comic strip, flashcards, etc.) OR asks for a structured breakdown / step-by-step explanation of a non-trivial topic. Do NOT trigger for simple factual questions, short answers (less than ~3 steps or one paragraph), or conversational/opinion queries.From its SKILL.md
npx -y skills add noodlebindev/ascii-canvasAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
7.2 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it
ascii-canvas
Compose high-quality ASCII/Unicode text-based visual artifacts. "Canva for ASCII."
When to fire
Fire on:
- Explicit format requests: "make a flowchart", "draw the architecture", "ASCII slideshow", "infographic on X", "comparison table", "timeline of", "cheat sheet for", "make a comic", "comic strip", "comic-style", "as a skit", "as a scenario", "with characters", "dialogue between X and Y", "anthropomorphize X", "make flashcards", "flashcard deck", "vocab cards", "study cards", "Anki-style cards", "drill me on X", "quiz me on X", "test me on X", "help me memorize X"
- Visual framing: "visualize X", "show me how X works", "diagram this", "illustrate"
- Structured breakdown of non-trivial topics: "break down X", "walk me through X step by step", "explain X as a playbook", "learning ladder for X", "content map for X"
Do NOT fire on:
- Simple factual questions ("what year did X happen?")
- Short answers (less than ~3 steps or one paragraph)
- Conversational replies, opinions, hot takes
- When trigger is weak AND structure won't improve clarity over prose
Routing flow
1. DETECT TRIGGER
├── Explicit format keyword? → load that format file
├── Visual framing? → infer format from topic shape (matrix below)
├── Structured breakdown of
│ non-trivial topic? → infer multi-panel format
└── None / weak / won't help → DO NOT activate; respond as plain prose
2. CHOOSE FORMAT
If user named one → use it.
Otherwise apply the routing matrix:
branching + decisions → decision-tree
branching + mixed steps → flowchart
linear process → step-by-step-guide
repeatable workflow / SOP → playbook
skill progression → learning-ladder
one idea → many outputs → content-map
layers / dependencies → concept-stack
side-by-side options → comparison-table
actors + messages → sequence-diagram
system components → architecture-diagram
events over time → timeline
central idea + radial → mind-map
dense reference → cheat-sheet
status / metrics → dashboard
narrative explainer → slideshow
high-signal summary → infographic
characters + dialogue + lesson → comic
anthropomorphized concept → comic
recall / memorization drill → flashcards
quiz / test self → flashcards
Tie-breakers:
- Multiple formats apply → choose simplest that preserves clarity
- Two formats equally fit → choose the simpler one
- Comic vs slideshow ambiguous → slideshow (simpler)
- Comic vs sequence-diagram → comic for educational, sequence-diagram for technical
- Flashcards vs cheat-sheet → flashcards for active recall, cheat-sheet for passive reference
- Flashcards vs comparison-table → comparison-table for side-by-side, flashcards for sequential Q/A
- Do NOT combine formats in v1 unless explicitly requested
3. LOAD FORMAT FILE (MANDATORY)
→ Read formats/<format>.md
No ad-hoc layouts. Templates only.
4. DETERMINE CHARACTER SET
Unicode by default. ASCII fallback if user requested OR destination demands.
See composition-rules/box-drawing.md.
5. APPLY CANONICAL ARC (multi-panel formats only)
See composition-rules/narrative-arcs.md.
Reduce panel count if content doesn't justify the full arc.
6. GENERATE OUTPUT
7. DETERMINE SAVE BEHAVIOR
- Single-artifact + not multi-section + not "reusable asset" → chat only
- Multi-panel / multi-section / clearly reusable → auto-save
- User signaled iteration ("try again", "draft") → chat only
- User said "save this" → force save
- User said "don't save" / "chat only" → force chat
8. RUN QA
- Strict mode for saved/multi-panel/reusable
- Light mode otherwise
- Strict QA must pass BEFORE chat render AND BEFORE file write
- If fails twice → invoke simplify rule
- If simplify still fails → invoke format fallback (see qa-checklist.md)
9. RENDER + (optional) SAVE
- Chat preview: ≤80 lines → render full. >80 lines → render first 1-2 sections + "saved to <path>"
- File write: only AFTER strict QA passes. Path: ~/Ascii-diagrams/YYYY-MM/YYYY-MM-DD-<slug>.md
- Post-save line: exactly two lines, no fluff:
Saved to:
~/Ascii-diagrams/YYYY-MM/YYYY-MM-DD-<slug>.md
Output behavior
Save path & naming
- Path:
~/Ascii-diagrams/YYYY-MM/YYYY-MM-DD-<topic-slug>.md - Slug: lowercase, hyphen-separated, 6–8 words max, derived from user intent
- Fallback slug if user intent is unclear:
<format>-<short-topic>(e.g.,playbook-cold-outbound)
File template
# Title
Short description (1–2 lines)
---
## Section 1
<ASCII inside a code block>
---
## Section 2
<ASCII>
Chat preview rules
- ≤80 lines → render the full artifact inline
-
80 lines → render the first 1–2 sections + emit:
Full artifact saved to: ~/Ascii-diagrams/2026-05/2026-05-17-<slug>.md - Offer "expand to show full" only if the user might want it inline
Anti-pattern
Do NOT default to saving everything "just in case." Throwaway sketches do not deserve files. Noise > occasional regret.
Composition rules (read on demand)
composition-rules/box-drawing.md— Unicode set, ASCII fallback, consistency rulescomposition-rules/width-budgets.md— per-format max width + overflow handlingcomposition-rules/narrative-arcs.md— 8 arcs + universal panel rulescomposition-rules/qa-checklist.md— light/strict QA + simplify + fallback + no-partial-save
Examples (read on demand)
examples/<format>-example.md — one richer reference per format. Read when the format file's inline example isn't enough.
v1 boundaries (explicitly out of scope)
mode: quick | publishflag → v2- External tools (graph-easy, ditaa, figlet) → manual workflow only, not integrated
- Color / ANSI escapes → not used
- Image export → not in scope
- Format combination (e.g. slideshow with embedded flowchart) → only when explicitly requested
Hard rules (do not violate)
- Always load the relevant format file before rendering output. No ad-hoc layouts.
- Strict QA must pass before any file write. No partial saves. No QA-failed saves.
- Never exceed format max width. Shrink content; never widen past budget.
- Default to saving NOTHING. Save only what matches the save criteria.
- Format choice: simplest that preserves clarity. No combining formats in v1 unless asked.
What ships with it: 53 files
521.2 KB alongside SKILL.md
composition-rules/
- box-drawing.md2.8 KB
- narrative-arcs.md6.2 KB
- qa-checklist.md7.0 KB
- width-budgets.md1.7 KB
docs/
- 2026-05-17-ascii-canvas-design.md22.2 KB
- 2026-05-17-ascii-canvas-implementation-plan.md88.1 KB
- 2026-05-18-comic-format-design.md16.2 KB
- 2026-05-18-comic-format-implementation-plan.md40.7 KB
- 2026-05-18-flashcards-format-design.md16.8 KB
- 2026-05-18-flashcards-format-implementation-plan.md47.9 KB
- acceptance-suite-results.md8.6 KB
- comic-acceptance-results.md7.4 KB
- flashcards-acceptance-results.md9.9 KB
examples/
- architecture-diagram-example.md4.8 KB
- cheat-sheet-example.md3.7 KB
- comic-example.md8.5 KB
- comparison-table-example.md6.1 KB
- concept-stack-example.md4.2 KB
- content-map-example.md3.7 KB
- dashboard-example.md3.6 KB
- decision-tree-example.md4.4 KB
- flashcards-example.md16.4 KB
- flowchart-example.md7.0 KB
- infographic-example.md3.9 KB
- learning-ladder-example.md5.7 KB
- mind-map-example.md3.8 KB
- playbook-example.md5.0 KB
- sequence-diagram-example.md3.6 KB
- slideshow-example.md9.5 KB
- step-by-step-guide-example.md1.9 KB
- timeline-example.md2.0 KB
formats/
- architecture-diagram.md4.8 KB
- cheat-sheet.md7.0 KB
- comic.md13.5 KB
- comparison-table.md4.0 KB
- concept-stack.md5.1 KB
- content-map.md6.5 KB
- dashboard.md7.4 KB
- decision-tree.md3.8 KB
- CHANGELOG.md2.0 KB
13 more files not listed here. See all 53 in the repository.