svg-to-png
PassAudited by VirusTotal on May 11, 2026.
Overview
Type: OpenClaw Skill Name: svg-to-png Version: 1.0.0 The skill is a straightforward utility for converting SVG files to PNG format using the reputable 'sharp' library. The script 'scripts/convert.js' performs basic file existence checks and image processing as described in 'SKILL.md', with no evidence of malicious intent, data exfiltration, or harmful prompt injection.
Findings (0)
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.
Installing the skill's dependency may add npm packages and native image-processing components to the current project or directory.
The skill requires installing a third-party npm dependency. This is purpose-aligned for image conversion, but users should recognize that npm installation changes the local environment and depends on external package provenance.
在使用该技能前,需要在当前目录安装 sharp: ```bash npm install sharp ```
Install dependencies in a project or sandbox you control, and prefer using the included package-lock/package.json workflow where possible.
A selected output path could be overwritten by the generated PNG.
The script writes an output file to the provided PNG path. This is exactly what the converter is meant to do, but users should be aware it can create or replace files at the chosen output location.
await sharp(svgPath)
.resize(size, size)
.png()
.toFile(pngPath);Confirm the input and output paths before running the conversion, especially when using an existing filename.
