Agent Skillsdongsheng123132/u-claw › image-compress

image-compress

GitHub

提供本地图片压缩、尺寸调整及格式转换(jpg/png/webp)能力,支持批量处理。基于Pillow库实现,确保隐私安全,适用于邮件附件或即时通讯场景的文件优化。

portable/skills-cn/image-compress/SKILL.md dongsheng123132/u-claw

Trigger Scenarios

用户需要减小图片文件体积 用户要求将图片转换为特定格式如webp 用户需要批量处理文件夹中的图片

Install

npx skills add dongsheng123132/u-claw --skill image-compress -g -y
More Options

Non-standard path

npx skills add https://github.com/dongsheng123132/u-claw/tree/main/portable/skills-cn/image-compress -g -y

Use without installing

npx skills use dongsheng123132/u-claw@image-compress

指定 Agent (Claude Code)

npx skills add dongsheng123132/u-claw --skill image-compress -a claude-code -g -y

安装 repo 全部 skill

npx skills add dongsheng123132/u-claw --all -g -y

预览 repo 内 skill

npx skills add dongsheng123132/u-claw --list

SKILL.md

Frontmatter
{
    "name": "image-compress",
    "metadata": {
        "openclaw": {
            "emoji": "🖼️"
        }
    },
    "description": "图片压缩\/转换 - 批量压缩、改尺寸、转格式(jpg\/png\/webp),本地处理不失隐私"
}

图片压缩 / 转换

帮用户压缩图片体积、调整尺寸、转换格式,全部本地处理,照片不外传。

能力概述

  • 压缩:降低体积(控制质量/分辨率),适合发邮件、传微信
  • 改尺寸:按宽高或百分比缩放
  • 转格式:jpg / png / webp 互转(webp 体积最小)
  • 批量:处理整个文件夹

操作方式

用 Bash 工具,Python 的 Pillow 库(跨平台、纯本地):

python -c "import PIL" 2>/dev/null || pip install -q Pillow

# 单张压缩(质量 75,宽度限制 1600px 等比缩放)
python - <<'PY'
from PIL import Image
im = Image.open("input.jpg")
if im.width > 1600:
    im = im.resize((1600, int(im.height*1600/im.width)))
im.convert("RGB").save("output.jpg", "JPEG", quality=75, optimize=True)
print("已压缩 -> output.jpg")
PY

# 批量:当前目录所有 jpg/png -> webp(体积更小)
python - <<'PY'
from PIL import Image
import glob, os
for f in glob.glob("*.jpg") + glob.glob("*.png"):
    out = os.path.splitext(f)[0] + ".webp"
    Image.open(f).save(out, "WEBP", quality=80)
    print(f"{f} -> {out}")
PY

使用建议

  • 处理前 ls -lh 看原图体积,处理后再 ls -lh 对比,告诉用户压缩了多少
  • 默认不覆盖原图(输出新文件名),除非用户明确要求覆盖
  • 含透明通道的 PNG 转 JPG 会丢透明,转 webp 可保留——按需选格式

Version History

  • 735e4de Current 2026-07-25 11:23

Same Skill Collection

portable/skills-cn/web-to-markdown/SKILL.md
portable/skills-cn/bilibili-helper/SKILL.md
portable/skills-cn/china-search/SKILL.md
portable/skills-cn/china-translate/SKILL.md
portable/skills-cn/china-weather/SKILL.md
portable/skills-cn/deepseek-helper/SKILL.md
portable/skills-cn/douyin-script/SKILL.md
portable/skills-cn/excel-helper/SKILL.md
portable/skills-cn/pdf-toolkit/SKILL.md
portable/skills-cn/ppt-designer/SKILL.md
portable/skills-cn/qrcode-maker/SKILL.md
portable/skills-cn/wechat-article/SKILL.md
portable/skills-cn/weibo-poster/SKILL.md
portable/skills-cn/word-writer/SKILL.md
portable/skills-cn/xiaohongshu-writer/SKILL.md
portable/skills-cn/zhihu-writer/SKILL.md

Metadata

Files
0
Version
50b2654
Hash
92ff4e8b
Indexed
2026-07-25 11:23

Главная - Вики-сайт
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-29 19:11
浙ICP备14020137号-1 $Гость$