From gimp
Apply one operation across a folder of images using GIMP's headless console — resize, crop, format-convert, flatten, watermark, etc. Use when the user wants to bulk-process images and ImageMagick alone isn't enough (e.g. needs a GIMP-only filter or PSD/XCF support).
How this skill is triggered — by the user, by Claude, or both
Slash command
/gimp:batch-processThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Stub orchestrator — composes a Script-Fu loop and hands off to `run-script-fu`.
Stub orchestrator — composes a Script-Fu loop and hands off to run-script-fu.
input_glob — e.g. ~/Pictures/raw/*.jpgoutput_diroperation — one of: resize, crop, format-convert, flatten, watermark, customwidth, height, format, watermark_path)onboard.ls/find. Bail if empty.operation, generate the Script-Fu body:
gimp-image-scalegimp-image-cropgimp-file-load → file-<fmt>-savegimp-image-flatten(let loop ...) over the file list, ending with (gimp-quit 0).run-script-fu via script_path.magick) for simple resize/format conversion — faster, no GIMP startup cost. Only use this skill when the operation actually needs GIMP.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin gimp