batch-image-compressor — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited batch-image-compressor (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This skill compresses JPEG and PNG images in a directory without changing their resolution or format. It uses jpegoptim and pngquant CLI tools to achieve high compression with excellent quality preservation. pngquant provides massive file size reductions for PNGs by intelligently reducing the number of colors while keeping visual differences nearly imperceptible.
jpegoptim and pngquant are installed by running which jpegoptim and which pngquant. If either tool is missing, explicitly explain to the user why they are needed (to perform the high-quality, resolution-preserving compression) and directly execute the command to install them via Homebrew (brew install jpegoptim pngquant). Do not wait for the user to do it manually..jpg, .jpeg, and .png files in the target directory (defaulting to the current working directory). Calculate the total size of these images before compression. Inform the user how many images were found and the total starting size.compressed-image.jpg). If the user does not specify an output directory, output the new compressed images in the same directory as the original images..jpg and .jpeg file found:cp "img.jpg" "compressed-img.jpg") and then execute jpegoptim -m80 --strip-all "compressed-img.jpg".jpegoptim -m80 --strip-all "<file>"..png file found:pngquant --output "compressed-img.png" "img.png".pngquant --ext .png --force "<file>".~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.