一键导入
image-invert
Invert colors in images to create negative effect or artistic variations. Use this skill when the user needs to invert image colors.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Invert colors in images to create negative effect or artistic variations. Use this skill when the user needs to invert image colors.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | image_invert |
| description | Invert colors in images to create negative effect or artistic variations. Use this skill when the user needs to invert image colors. |
This skill provides a utility to invert colors in images, creating a negative effect or artistic color variations.
uv run python .claude/skills/image_invert/invert.py <image_path> [options]
Note: For brevity, examples below use invert.py - prepend the full path .claude/skills/image_invert/ when running.
The script will:
_inverted appended to filename (e.g., image_inverted.jpg)-c, --channels - Channels to invert (default: "rgb")
rgb: Invert all channels (standard negative effect)r: Invert only red channelg: Invert only green channelb: Invert only blue channelrg, rb, gb (invert multiple specific channels)-q, --quality - JPEG quality (1-100, default: 95)# Standard color inversion (negative effect)
invert.py image.jpg
# Invert only red channel (artistic effect)
invert.py image.jpg --channels r
# Invert only green channel
invert.py image.jpg --channels g
# Invert red and blue channels
invert.py image.jpg --channels rb
# Invert with custom JPEG quality
invert.py photo.jpg --quality 90
original_inverted.ext (e.g., photo_inverted.jpg)The script will automatically install Pillow if it's not available.
Check PR status and verify GitHub Actions CI workflows. Use after git push or when user asks to check PR/CI status.
Download and review E2E test screenshots from GitHub Pages with duplicate detection and test context. Use when user asks to "review screenshots", "check test images", "view e2e screenshots", or after running PR checks to visually evaluate UI changes. Includes screenshot generation guidelines for QA developers.
Fit images into specific dimensions with fit, fill, or stretch modes. Supports auto-trimming borders and adding margins. Use this skill when the user needs to fit images into exact dimensions.
Browser automation and frontend testing and evaluation with Playwright MCP
Search and download SVG icons and illustrations from free online sources (Heroicons, Lucide, Feather, Bootstrap Icons, Tabler). Use when working with SVG icons, need UI graphics, or want to add icons to a project. Requires httpx package.
Convert backgrounds in images to transparent PNG files using flood fill from edges, with optional color filling and edge smoothing. Use this skill when the user needs to make images background transparent.