image-crop-rotate
Image processing skill for cropping images to 50% from center and rotating them 90 degrees clockwise. This skill should be used when users request image cropping to center, image rotation, or both operations combined on image files.
npx skills add instavm/coderunner --skill image-crop-rotate --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Image Crop and Rotate ## Overview This skill provides functionality to crop images to 50% of their original size from the center and rotate them 90 degrees clockwise. It uses a reliable Python script with PIL/Pillow for consistent, high-quality image processing. ## When to Use This Skill Use this skill when the user requests: - Cropping an image to 50% from the center - Rotating an image 90 degrees (clockwise) - Both cropping and rotating an image - Image processing tasks that combine center cropping with rotation ## How to Use This Skill ### Overview The skill provides a single script that performs both operations: cropping to 50% from center and rotating 90 degrees clockwise. ### Process 1. **Identify the input image**: Locate the user's uploaded image file in `/mnt/user-data/uploads/` 2. **Execute the script**: Run the `crop_and_rotate.py` script with input and output paths: ```bash python scripts/crop_and_rotate.py <input_path> <output_path> ``` 3. **Provide the result**: Move the processed image to `/mnt/user-data/outputs/` and share it with the user ### Script Details **`scripts/crop_and_rotate.py`** This script performs two operations in sequence: 1. Crops the image to 50%
- Overview
- When to Use This Skill
- How to Use This Skill
- Process
- Script Details
- Example Workflow
python scripts/crop_and_rotate.py <input_path> <output_path> python scripts/crop_and_rotate.py input.jpg output.jpg Process an uploaded image python /mnt/user-data/skills/image-crop-rotate/scripts/crop_and_rotate.py \
What does the image-crop-rotate skill do?
Image processing skill for cropping images to 50% from center and rotating them 90 degrees clockwise. This skill should be used when users request image cropping to center, image rotation, or both operations combined on image files.
How do I install it?
Run `npx skills add instavm/coderunner --skill image-crop-rotate --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From instavm/coderunner, a repository with 879 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
