用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/NabuWorkspace/OpenPaw --skill image-processing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
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.
Slice a generated grid/contact sheet of avatar images into individual avatar files and register them in the app. Use when the user supplies a sheet of avatars (a 3x4 grid of character tiles, etc.) and wants them added as new avatar options, or says "cut these up", "add these avatars", "slice this sheet".
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.
正在显示 SKILL.md
| 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