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.

What this means

Anyone using the skill is authorizing Pixmind API calls under their key, which may expose quota or billing usage if the key is mishandled.

Why it was flagged

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.

Skill content
const API_KEY = process.env.PIXMIND_API_KEY; ... 'X-API-Key': API_KEY
Recommendation

Use a revocable Pixmind API key, monitor usage, and do not share the key or place it in broadly accessible files.

What this means

Selected images leave the local machine and are processed by the remote provider, so private or sensitive photos could be exposed to that service.

Why it was flagged

For local files, the script converts selected images to base64 and sends them in the request body to the cloud compression endpoint.

Skill content
body.imageBase64 = fileToBase64(input); ... body: JSON.stringify(body)
Recommendation

Only process images you are comfortable uploading to Pixmind’s service, and avoid confidential images unless the provider’s privacy terms are acceptable.

What this means

A broad recursive folder selection could upload more images than intended and consume more API quota.

Why it was flagged

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.

Skill content
node {baseDir}/compress.js --dir ~/Pictures/ --preset web --recursive
Recommendation

Confirm the exact directory and whether recursive processing is desired before running batch compression.