Table Image

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only skill coherently renders tables as images, with the main thing to notice being that it asks you to install and run an external GitHub CLI.

This appears safe and purpose-aligned for rendering markdown tables as PNGs. Before installing, check that you trust the external tablesnap GitHub project, consider pinning a version instead of using '@latest', and be mindful that whatever table content you render may be saved to the specified image file and then shared as media.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing the skill as documented may add an external command-line program to the user's environment; future upstream changes could differ from what the skill author expected.

Why it was flagged

The skill depends on installing a third-party CLI from GitHub using a mutable latest version, while the registry has no install spec or pinned dependency.

Skill content
go install github.com/joargp/tablesnap/cmd/tablesnap@latest
Recommendation

Review the linked tablesnap repository before installing, and prefer pinning a specific trusted version instead of using '@latest' if possible.

What this means

The skill requires local command execution to generate the image, but the documented command is narrow and purpose-aligned.

Why it was flagged

The skill's normal workflow runs the locally installed tablesnap command and writes an output PNG file. This is expected for the stated purpose.

Skill content
echo "| Header 1 | Header 2 | ..." | tablesnap -o /tmp/table.png
Recommendation

Run the command only with table content you intend to render, and keep output paths scoped to temporary or user-controlled locations.