Crop photos intelligently based on natural language prompts using GPT-5 vision analysis. Use when the user asks to crop or trim a photo, remove parts of an image, focus on a specific subject, improve composition, or remove distractions from edges.
Use this skill when the user asks to:
This skill uses GPT-5 vision API to analyze photos and suggest intelligent cropping. Always:
from photo_clipper import main
result = main(
photo_path="photo.jpg",
prompt="Remove 20% from top to reduce empty sky"
)
# Returns: "photo-clipped.jpg"
python photo_clipper.py <photo_path> "<prompt>" [output_path]
Remove empty sky:
Remove 30% from top to reduce empty sky
Focus on subject:
Crop to focus on the person's face in the center
Remove distractions:
Remove the partial tree on the left edge
Improve composition:
Apply rule of thirds to balance the composition
Trim specific amount:
Remove 10% from all edges for a cleaner frame
{original_name}-clipped.{ext}See references/implementation.md for:
See examples/common-use-cases.md for: