image-forge

Solid

Edit images with precision using ImageMagick 7, sips, transparent-background, and Pillow — with intelligent routing to AI semantic editing (Gemini/nano-banana-pro) for content-aware operations. Covers cropping, resizing, compositing, annotating, format conversion, color adjustment, background removal, batch processing, and montage creation. Triggers on image editing, crop, resize, composite, annotate, remove background, format conversion.

AI & Automation 41 stars 3 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Image Forge Pixel-precise image editing with three-tier routing: deterministic CLI tools for exact operations, AI models for semantic edits, vision models for analysis. ## Routing Decision **Use AI when the edit requires understanding what is in the image. Use ImageMagick when the edit requires knowing exactly what to do to the pixels.** ### Tier 1: Deterministic (magick, sips, transparent-background) Use for operations with exact, numeric parameters: | Task | Tool | Command | |------|------|---------| | Resize to exact dimensions | magick | `magick in.jpg -resize 800x600! out.jpg` | | Resize fit (preserve aspect) | magick | `magick in.jpg -resize 800x600 out.jpg` | | Resize fill + crop | magick | `magick in.jpg -resize 800x600^ -gravity center -extent 800x600 out.jpg` | | Resize shrink only | magick | `magick in.jpg -resize '800x600>' out.jpg` | | Crop at offset | magick | `magick in.jpg -crop 600x400+100+50 +repage out.jpg` | | Center crop | magick | `magick in.jpg -gravity center -crop 600x400+0+0 +repage out.jpg` | | Auto-trim whitespace | magick | `magick in.jpg -fuzz 10% -trim +repage out.jpg` | | Format convert | magick | `magick in.png -quality 85 out.jpg` | | Add text | magick | `magick in.jpg -fill white -pointsize 36 -annotate +10+50 'Text' out.jpg` | | Composite overlay | magick | `magick bg.png fg.png -geometry +50+100 -composite out.png` | | Watermark | magick | `magick photo.jpg wm.png -gravity SouthEast -geometry +10+10 -compose Dissolve -define compos...

Details

Author
tdimino
Repository
tdimino/claude-code-minoan
Created
7 months ago
Last Updated
yesterday
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

imagemagick-cli

Comprehensive ImageMagick 7 command-line image processing for inspecting, converting, resizing, cropping, compositing, masking, drawing, annotating, color correction, quantization, filtering, morphology, distortion, animation, montage, comparison, metadata, batch automation, and advanced pixel analysis. Use whenever a task mentions ImageMagick, `magick`, `identify`, `mogrify`, raster image conversion or batch image manipulation, or when a reproducible CLI pipeline is preferable to a GUI or language binding. Also use for debugging ImageMagick commands, porting ImageMagick 6 `convert` syntax to version 7, choosing coder/delegate options, and safely processing untrusted or large images. Do not use merely to edit an existing SVG as vector source or when the user explicitly requests a different image tool.

60 Updated today
Yuki001
AI & Automation Listed

image-edit

Loki's local pixel workbench, deterministic image edits that need no model and cost nothing to run, convert (incl. WebP), resize, rotate, crop, grayscale, composite, optimize, and batch a whole folder; plus colour grading (a .cube LUT or matching a reference image) and RAW develop where the host has the libraries. Prefer this to regenerating whenever the pixels already exist.

0 Updated 1 weeks ago
TomSchimana
AI & Automation Listed

imagegen

Generates or edits raster images with AI (photos, illustrations, textures, sprites, mockups, logos, infographics), including transparent-background cutouts. Use when the task needs an AI-created or AI-edited bitmap; not for SVG/vector or code-native visuals.

2 Updated 4 days ago
Firzus