用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/paiml/antigravity-specialization-code --skill transpose-image命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | transpose-image |
| description | Safely transposes an image, mirroring it across the top-left/bottom-right diagonal. |
This skill safely and correctly transposes an image.
Use this skill when the user asks to transpose an image. It ensures the operation is mathematically a transpose (mirroring across the diagonal) and not just a 90-degree rotation.
scripts/transpose.sh <input_image> <output_image>
convert call.-transpose and -rotate 90. They are not the same operation, even though they yield the same output dimensions. -transpose mirrors the image; -rotate 90 turns it.scripts/verify.sh <input> <output>. It checks that transposing back reproduces the input, and that the result is not what -rotate 90 would have made. Report what it prints.scripts/transpose.sh performs the transpose operation
scripts/verify.sh verifies the correctness of the transpose