$npx -y skills add dkyazzentwatwa/chatgpt-skills --skill image-enhancement-suiteProcess images for cleanup, conversion, metadata, comparison, icons, palettes, collages, and sprite sheets. Use for single-image or batch image workflows.
| 1 | # Image Enhancement Suite |
| 2 | |
| 3 | Use this as the primary image toolkit. It now includes the repo's background removal, metadata, comparison, filter, palette, icon, collage, and sprite helpers. |
| 4 | |
| 5 | ## Use This For |
| 6 | |
| 7 | - Resize, crop, watermark, compress, and format conversion |
| 8 | - Background removal and quick cleanup |
| 9 | - Image comparisons and metadata inspection |
| 10 | - Palette extraction, icon generation, collages, and sprite sheet assembly |
| 11 | |
| 12 | ## Workflow |
| 13 | |
| 14 | 1. Start with `scripts/image_enhancer.py` for general-purpose image work. |
| 15 | 2. Use focused helpers when the task is narrow: |
| 16 | - `background_remover.py` |
| 17 | - `image_comparison.py` |
| 18 | - `image_metadata.py` |
| 19 | - `image_filter.py` |
| 20 | - `color_palette_extractor.py` |
| 21 | - `icon_generator.py` |
| 22 | - `collage_maker.py` |
| 23 | - `sprite_sheet_generator.py` |
| 24 | 3. Prefer batch operations only when the same transforms should be applied consistently. |
| 25 | |
| 26 | ## Guardrails |
| 27 | |
| 28 | - Preserve originals when quality tradeoffs are uncertain. |
| 29 | - Say when a background removal or smart crop is heuristic, not exact. |
| 30 | - Use vector output or SVG-oriented tooling when the request is really illustration, not raster editing. |