skills/imagemagick/SKILL.md
Use this skill whenever scientific image assets need deterministic preprocessing (resize, crop, convert, DPI normalization, montage/contact sheets) using ImageMagick 7 `magick`.
npx skillsauth add drpedapati/sciclaw imagemagickInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Use this skill for reproducible image preparation in manuscript and presentation workflows.
Primary CLI: magick (ImageMagick 7)
Use this skill when a task involves:
png, jpg, tiff, webp, pdf pages to images)magick command syntax (not legacy convert) for portability in sciClaw.magick input.png -resize 1600x output-1600w.png
magick input.png -trim +repage -bordercolor white -border 20 output-trimmed.png
magick input.tif -quality 92 output.jpg
magick input.png -units PixelsPerInch -density 300 output-300dpi.png
magick input.png -crop 1200x900+100+80 +repage output-crop.png
magick montage figure-*.png -tile 4x -geometry 600x600+8+8 contact-sheet.png
magick -density 300 manuscript.pdf[0] -quality 95 manuscript-page1.png
mkdir -p normalized
for f in figures/*.png; do
base="$(basename "$f" .png)"
magick "$f" -trim +repage -resize 1800x -units PixelsPerInch -density 300 "normalized/${base}-norm.png"
done
magick scan.jpg -colorspace Gray -auto-level -sharpen 0x1.0 -density 300 scan-ocr-ready.png
magick is missing: install ImageMagick (brew install imagemagick)..png or .tif).pandoc-docx and docx-review when preparing manuscript-ready figures.pdf skill for PDF extraction/assembly workflows.explainer-site and beautiful-mermaid when polishing visual assets for web explainers.development
Get current weather and forecasts (no API key required).
tools
Remote-control tmux sessions for interactive CLIs by sending keystrokes and scraping pane output.
content-media
Summarize or extract text/transcripts from URLs, podcasts, and local files (great fallback for “transcribe this YouTube/video”).
data-ai
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.