Pixmind Image Compress
ReviewAudited by ClawScan on May 10, 2026.
Overview
This skill is coherent for cloud image compression, but users should know that selected images and the Pixmind API key are sent to the Pixmind cloud service.
This skill appears safe to install if you are comfortable with cloud-based image compression. Before use, make sure the Pixmind API key is stored securely, confirm the file or folder scope for batch jobs, and avoid uploading sensitive images unless you trust Pixmind’s handling of them.
Findings (3)
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.
Anyone using the skill is authorizing Pixmind API calls under their key, which may expose quota or billing usage if the key is mishandled.
The skill authenticates to the Pixmind API with a user-provided API key. This is expected for the service, but it grants account authority and may consume account quota.
const API_KEY = process.env.PIXMIND_API_KEY; ... 'X-API-Key': API_KEY
Use a revocable Pixmind API key, monitor usage, and do not share the key or place it in broadly accessible files.
Selected images leave the local machine and are processed by the remote provider, so private or sensitive photos could be exposed to that service.
For local files, the script converts selected images to base64 and sends them in the request body to the cloud compression endpoint.
body.imageBase64 = fileToBase64(input); ... body: JSON.stringify(body)
Only process images you are comfortable uploading to Pixmind’s service, and avoid confidential images unless the provider’s privacy terms are acceptable.
A broad recursive folder selection could upload more images than intended and consume more API quota.
The documented batch mode can recursively process an entire selected folder of images. This is purpose-aligned, but it can upload many files if the folder is broad.
node {baseDir}/compress.js --dir ~/Pictures/ --preset web --recursiveConfirm the exact directory and whether recursive processing is desired before running batch compression.
