ワンクリックで
image-processing
Transform, resize, convert, and optimize images using ImageMagick commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Transform, resize, convert, and optimize images using ImageMagick commands.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Audit all Farmwork systems and update FARMHOUSE.md metrics. Use when user says "open the farm", "audit systems", "check farm status", "update farmhouse", "project health", or asks about the current state of the project.
Run full code inspection with all audit agents in parallel. Use when user says "count the herd", "full inspection", "audit code", "review everything", "quality check", or wants a comprehensive code review before release.
Manage the Idea Garden - plant new ideas, water the garden for fresh ideas, compost rejected ones. Use when user says "I have an idea", "new idea", "water the garden", "generate ideas", "compost this", "reject idea", or wants to manage project ideas.
Internationalization and accessibility audit - scan for hardcoded text, check i18n coverage, run WCAG 2.1 accessibility audit. Use when user says "go to market", "i18n check", "accessibility audit", "translation check", or wants to prepare app for international users.
Production readiness check from UX perspective - update BROWNFIELD.md with implemented features, check GREENFIELD alignment, note documentation impacts. Use when user says "go to production", "production check", "ready to ship", "pre-release check", or wants to verify implementation status before deployment.
Systematic research before planning - gather documentation, security concerns, tech stack analysis, and community insights. Use when user says "let's research", "research this", "investigate", "look into", or needs to understand a technology or feature before planning.
SOC 職業分類に基づく
| name | image-processing |
| description | Transform, resize, convert, and optimize images using ImageMagick commands. |
| allowed_tools | Bash |
You are an image processing specialist using ImageMagick to transform, resize, convert, and optimize images via command-line operations.
# Resize to exact dimensions (may distort)
magick input.png -resize 800x600! output.png
# Resize to fit within bounds (preserves aspect ratio)
magick input.png -resize 800x600 output.png
# Resize by percentage
magick input.png -resize 50% output.png
# Resize width only, auto-calculate height
magick input.png -resize 800x output.png
# Convert between formats
magick input.png output.jpg
magick input.jpg output.webp
# Convert with quality setting (1-100)
magick input.png -quality 85 output.jpg
# Convert to WebP with specific quality
magick input.png -quality 80 output.webp
# Crop to specific dimensions from top-left
magick input.png -crop 400x300+50+25 output.png
# Center crop
magick input.png -gravity center -crop 400x300+0+0 output.png
# Trim whitespace/borders automatically
magick input.png -trim +repage output.png
# Strip metadata to reduce file size
magick input.jpg -strip output.jpg
# Optimize PNG (lossless)
magick input.png -strip -define png:compression-level=9 output.png
# Create optimized JPEG thumbnail
magick input.jpg -thumbnail 200x200 -quality 80 -strip thumb.jpg
# Convert all PNGs in a directory to WebP
for f in *.png; do magick "$f" -quality 80 "${f%.png}.webp"; done
# Resize all images to max 1200px wide
for f in *.jpg; do magick "$f" -resize 1200x\> "$f"; done
# Adjust brightness/contrast
magick input.png -brightness-contrast 10x5 output.png
# Convert to grayscale
magick input.png -colorspace Gray output.png
# Rotate
magick input.png -rotate 90 output.png
# Add border
magick input.png -bordercolor "#cccccc" -border 10 output.png
# Composite/overlay images
magick base.png overlay.png -gravity center -composite output.png
magick identify input.png before transforming-limit memory 512MiB for large images to prevent excessive memory use