Image editing
[COLM'26] SkillLearnBench is the first benchmark for evaluating continual learning methods that automatically generate agent skills.
npx -y skills add cxcscmu/SkillLearnBench --skill image-editingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
What its author says it does
Copied from the file, not written here
Command-line tools for modifying and manipulating images, such as resizing, blurring, or changing colorspace. Use this skill whenever the user mentions modifying images, converting to grayscale, or changing image properties.
SKILL.md
0.7 KB, as published. Nobody here has run it
Image Editing using ImageMagick
Use the convert command to modify images.
Useful image operations
-
Convert to Grayscale: Use
-colorspace Gray. Example to edit in-place:convert input.png -colorspace Gray input.png -
Resize:
-resize 50%or-resize 256x256 -
Format conversion:
convert -format jpg *.png
Dependencies
- convert: Run
sudo apt install imagemagickto install. After that, you can useconvertcommand.