Agent skill

image-manipulation-image-magick

Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.

GitHub68,948★ · +463/wk · 2 repos on radarProfile →
copilotMIT
Install
npx skills add github/awesome-copilot --skill image-manipulation-image-magick --agent copilot

Same command for any agent — swap --agent for claude-code, codex, cursor.

Facts
Files in the skill folder: 1
SKILL.md size: 7 KB
Bundled scripts: none
Requires: Requires ImageMagick installed and available as `magick` on PATH. Cross-platform examples provided for PowerShell…
Path: skills/image-manipulation-image-magick/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 37,432 · +281 this week
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Image Manipulation with ImageMagick This skill enables image processing and manipulation tasks using ImageMagick across Windows, Linux, and macOS systems. ## When to Use This Skill Use this skill when you need to: - Resize images (single or batch) - Get image dimensions and metadata - Convert between image formats - Create thumbnails - Process wallpapers for different screen sizes - Batch process multiple images with specific criteria ## Prerequisites - ImageMagick installed on the system - **Windows**: PowerShell with ImageMagick available as `magick` (or at `C:\Program Files\ImageMagick-*\magick.exe`) - **Linux/macOS**: Bash with ImageMagick installed via package manager (`apt`, `brew`, etc.) ## Core Capabilities ### 1. Image Information - Get image dimensions (width x height) - Retrieve detailed metadata (format, color space, etc.) - Identify image format ### 2. Image Resizing - Resize single images - Batch resize multiple images - Create thumbnails with specific dimensions - Maintain aspect ratios ### 3. Batch Processing - Process images based on dimensions - Filter and process specific file types - Apply transformations to multiple files ## Usage Examples ### Example 0: Reso

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Prerequisites
  3. Core Capabilities
  4. 1. Image Information
  5. 2. Image Resizing
  6. 3. Batch Processing
  7. Usage Examples
  8. Example 0: Resolve magick executable
  9. Example 1: Get Image Dimensions
  10. Example 2: Resize Images
  11. Example 3: Get Detailed Image Information
  12. Example 4: Process Images Based on Dimensions
  13. Guidelines
  14. Common Patterns
Commands it runs
Check if magick is available on PATH
if ! command -v magick &> /dev/null; then
echo "ImageMagick not found. Install it using your package manager:"
echo "  Ubuntu/Debian: sudo apt install imagemagick"
echo "  macOS: brew install imagemagick"
exit 1
fi
For a single image
magick identify -format "%wx%h" path/to/image.jpg
For multiple images
More from awesome-copilot
All skills →
About this skill
What does the image-manipulation-image-magick skill do?

Process and manipulate images using ImageMagick. Supports resizing, format conversion, batch processing, and retrieving image metadata. Use when working with images, creating thumbnails, resizing wallpapers, or performing batch image operations.

How do I install it?

Run `npx skills add github/awesome-copilot --skill image-manipulation-image-magick --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From github/awesome-copilot, a repository with 37,432 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going