Table2Image
Analysis
Table2Image appears purpose-aligned for converting tables to PNGs, with the main thing to notice being that installation downloads Playwright/Chromium and rendering launches a local headless browser.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
"postinstall": "npx playwright install chromium", "dependencies": { "playwright": "^1.58.2" }Installing the package can automatically invoke Playwright to download Chromium. This is purpose-aligned for browser-based image rendering and is disclosed in the skill documentation, but it expands the install-time trust boundary to npm, Playwright, and the browser download.
browserPromise = chromium.launch({
headless: true
});The renderer launches a local headless Chromium browser to generate PNG screenshots. This is expected for the stated Playwright-based table rendering purpose, but it is still local executable/browser activity.
