npx skills add sundial-org/awesome-openclaw-skills --skill table-image
maroffo/claude-forge
table-image
Render markdown tables as hand-drawn sketch images. Use when user wants a table rendered as an image, visual table, or diagram illustration.
Installation
npx skills add maroffo/claude-forge --skill table-image
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Build or maintain Cloudflare Sandbox apps on the stable @cloudflare/sandbox package. Use sandbo…
27.3K installsCreate managed Iceberg tables using Amazon S3 Tables (s3tables API namespace) with automatic co…
4.9K installsRender and serialize Portable Text to React, Svelte, Vue, Astro, HTML, Markdown, and plain text.
2.2K installsConvert HTML and Markdown content into Portable Text blocks for Sanity.
2.2K installsUse when working with n8n's built-in Data Tables, designing schemas, inserting/updating/upserti…
1.1K installsMigrate Kotlin (and Java) code from kotlinx.collections.immutable 0.3.x / 0.4.x to the latest 0…
597 installsAlso in this package
Other skills from maroffo/claude-forge · top by installs.
npx skills add maroffo/claude-forge
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Skill metadata
Parsed from SKILL.md frontmatter.
Bash, ReadPackage contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,394 B -
docs
SUMMARY.md159 B
History
- First seen on skills.sh
- First recorded snapshot · 28 installs
SKILL.md
ABOUTME: Render markdown tables and diagrams as hand-drawn sketch images via Gemini
ABOUTME: Converts tabular data into ink-style editorial illustrations with wide aspect ratio
Table Image Skill
Render markdown tables and diagrams as hand-drawn sketch images using Gemini's image generation.
Workflow
1. Receive Table Content
Get the markdown table from the user. The table should be in standard markdown format.
2. Construct the Prompt
Build a prompt using this structure:
Black and white hand-drawn sketch, loose ink strokes. A clean technical table drawn on
white paper. Minimalist, high contrast, editorial tech illustration. Compact layout,
minimal margins, cropped tightly to the table edges, the table fills the frame. --ar 24:9
[paste the full markdown table here]
3. Generate
uv run ~/.claude/skills/_generate_image.py "<constructed prompt>" --ar 24:9 -o table.png
4. Report
Report the saved file path and suggest reviewing the image.
Example
Input table:
| Feature | Go | Python | Ruby |
|---------|-----|--------|------|
| Concurrency | goroutines | asyncio | threads |
| Typing | static | dynamic | dynamic |
| Speed | fast | moderate | moderate |
Prompt:
Black and white hand-drawn sketch, loose ink strokes. A clean technical table drawn on
white paper. Minimalist, high contrast, editorial tech illustration. Compact layout,
minimal margins, cropped tightly to the table edges, the table fills the frame. --ar 24:9
| Feature | Go | Python | Ruby |
|---------|-----|--------|------|
| Concurrency | goroutines | asyncio | threads |
| Typing | static | dynamic | dynamic |
| Speed | fast | moderate | moderate |
Notes
- Requires
GEMINIAPIKEYorGOOGLEAPIKEYin environment - Default output:
table.pngin current directory - Default aspect ratio: 24:9 (wide, fills frame with table)
- Uses shared script:
~/.claude/skills/generateimage.py - For complex tables, results improve when the table has clear headers and consistent column widths