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.

First seen Mar 1, 2026

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.

Also in this package

Other skills from maroffo/claude-forge · top by installs.

npx skills add maroffo/claude-forge

Browse all from 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.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Also listed on

Alternate registries and mirrors of this skill.

Repository health

Stars 16
License LICENSE
Default branch main
Open issues 6
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

CompatibilityRequires GEMINI_API_KEY or GOOGLE_API_KEY in environment. Uses ~/.claude/skills/_generate_image.py
Allowed toolsBash, Read
Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,394 B
  • docs SUMMARY.md 159 B

History

  1. First seen on skills.sh
  2. 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 GEMINIAPIKEY or GOOGLEAPIKEY in environment
  • Default output: table.png in 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