Use this skill when the user wants to create diagrams, architecture illustrations, flowcharts, or technical drawings from ASCII art — convert text diagrams into SVG images.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-d255a2a4)More formats (shields.io, HTML) on the badges page.
---
name: svgbob
description: Use this skill when the user wants to create diagrams, architecture illustrations, flowcharts, or technical drawings from ASCII art — convert text diagrams into SVG images.
---
# SvgBob Plugin
Convert ASCII art diagrams into SVG graphics. Sketch architecture, flowcharts, and boxes in text, render as images.
## Commands
### Self
- `svgbob self version` — Print version
### Convert
- `svgbob convert file` — Convert ASCII diagram file to SVG
- `svgbob convert string` — Convert inline ASCII string to SVG
### Passthrough
- `svgbob _ _` — Passthrough for any svgbob command
## Usage Examples
- "Convert this ASCII architecture diagram to SVG"
- "Turn this text-based flowchart into an image"
- "Render this ASCII art network diagram"
## Installation
```bash
cargo install svgbob_cli
```
## Examples
```bash
# Convert a diagram file to SVG
svgbob_cli diagram.txt > output.svg
# Inline string conversion
svgbob_cli -s "
+------+ +------+
| API |---->| DB |
+------+ +------+
|
v
+------+
| Cache|
+------+
" > architecture.svg
# Custom colors
svgbob_cli diagram.txt --background "#f0f0f0" --fill-color "#333"
# Read from stdin
cat diagram.txt | svgbob_cli > output.svg
# With custom font
svgbob_cli diagram.txt --font-family "monospace"
```
## Key Features
- ASCII art to SVG conversion
- Supports boxes, arrows, circles, diamonds, lines
- Pipe-friendly (stdin/stdout)
- Custom colors and fonts
- Pure Rust, no dependencies
- Suitable for architecture diagrams, flowcharts, network topologies
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!