image-compress — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited image-compress (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.
README 引用的图片不得超过 100KB。
 引用的图片文件# 查找 docs/ 和 images/ 下超过 100KB 的图片
find docs/ images/ -type f \( -name "*.png" -o -name "*.jpg" -o -name "*.jpeg" -o -name "*.webp" -o -name "*.avif" -o -name "*.gif" \) -size +100k# 缩小尺寸(保持宽度 1200px 以内)
sips --resampleWidth 1200 image.png
# 转为 jpg 并降低质量
sips -s format jpeg -s formatOptions 80 image.png --out image.jpg# png → avif(推荐,体积最小)
ffmpeg -i input.png -c:v libaom-av1 -crf 30 -still-picture 1 output.avif
# png → webp
ffmpeg -i input.png -quality 80 output.webp
# 批量转换
for f in docs/screenshots/*.png; do
ffmpeg -i "$f" -c:v libaom-av1 -crf 30 -still-picture 1 "${f%.png}.avif"
donebash .windsurf/skills/image-compress/scripts/check_compress.sh~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.