with one click
image-resize
Resize, convert, and batch-process images using ImageMagick.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Resize, convert, and batch-process images using ImageMagick.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Analyze and process Excel/CSV files using pandas and openpyxl. Supports data summary, filtering, pivot tables, and chart generation.
Playwright browser automation — navigate, read, and interact with web pages using text snapshots and ref-based targeting. Supports keyboard, dialogs, file upload, JS evaluation, console/network debugging, and PDF export. Login state persists across sessions. Use when user wants to open a URL, fill a web form, scrape page content, or operate any website that requires clicking/typing.
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading/injecting/running secrets via op.
Manage Apple Notes via the `memo` CLI on macOS (create, view, edit, delete, search, move, and export notes). Use when a user asks Moltbot to add a note, list notes, search notes, or manage note folders.
Search and manage Apple Photos library on macOS via osascript.
| name | image-resize |
| description | Resize, convert, and batch-process images using ImageMagick. |
| metadata | {"xiaodazi":{"dependency_level":"external","os":["common"],"backend_type":"local","user_facing":true,"bins":["magick"]}} |
| capabilities | ["image_processing","image_editing"] |
使用 ImageMagick 批量处理图片:缩放、裁剪、格式转换、压缩、拼接。
# macOS
brew install imagemagick
# Windows
winget install ImageMagick.ImageMagick
# Linux
sudo apt install imagemagick
# 按宽度缩放(保持比例)
magick input.jpg -resize 800x output.jpg
# 按百分比
magick input.jpg -resize 50% output.jpg
# 指定尺寸(可能变形)
magick input.jpg -resize 800x600! output.jpg
magick input.png output.jpg
magick input.jpg output.webp
# 批量缩放目录下所有 JPG
for f in *.jpg; do magick "$f" -resize 800x "resized_$f"; done
# 批量转格式
for f in *.png; do magick "$f" "${f%.png}.jpg"; done
# JPEG 质量压缩
magick input.jpg -quality 80 output.jpg
# 去除元数据减小体积
magick input.jpg -strip -quality 85 output.jpg
# 水平拼接
magick a.jpg b.jpg +append merged.jpg
# 垂直拼接
magick a.jpg b.jpg -append merged.jpg
magick input.jpg -gravity SouthEast -fill white -pointsize 24 \
-annotate +10+10 "© 2026" output.jpg