Imgae Convert Skill
Analysis
The artifacts show a straightforward local image conversion tool, with normal caution needed for local file writes and the unpinned Pillow setup step.
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.
pip install Pillow # 或使用uv uv add Pillow
The skill depends on Pillow and asks the user to install it manually, but does not pin a version or provide an install specification.
path.parent.mkdir(parents=True, exist_ok=True) ... img.save(path, **save_kwargs)
The converter creates output directories and writes image files to user-supplied paths, which is expected for image conversion but can affect local files.
