How this skill is triggered — by the user, by Claude, or both
Slash command
/image-converter:image-converterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
PNG/JPG/JPEG画像をWebP、ICO、SVG形式に変換する。
PNG/JPG/JPEG画像をWebP、ICO、SVG形式に変換する。
詳細は scripts/convert_image.py --help を参照。
# WebPに変換
python3 scripts/convert_image.py input.png --format webp
# ICOに変換(複数サイズ対応)
python3 scripts/convert_image.py input.png --format ico --sizes 16,32,48,256
# SVGに変換(画像埋め込み形式)
python3 scripts/convert_image.py input.png --format svg
# 出力先を指定
python3 scripts/convert_image.py input.jpg --format webp -o output.webp
pip install Pillow
npx claudepluginhub masayan1126/masayan-uni-code-plugins --plugin image-converterCLI image manipulation using ImageMagick and vtracer — convert PNG/JPG to SVG, remove watermarks, resize, crop, and edit raster images.
Convert SVG to PNG with control over dimensions, background, CSS effects like mix-blend-mode/filters. Presets for app icons, favicons, splash screens.
Wraps raster logo files (webp, png, jpg) as base64-embedded SVG for pixel-identical output. Use when converting logos to SVG format without a vector source.