com um clique
image-resizer
Use this skill to resize images via OpenCV.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Use this skill to resize images via OpenCV.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
评估方法论 — 指导 agent 如何系统性评估代码库状态
已并入 implement skill,请勿新用
实现阶段主操作手册 — 指导 agent 完成改码与局部验证,并把提交留给独立 commit phase
规划规范 — 将评估结果收敛为结构化任务计划
流水线选择规范 — 根据任务和事实选择最合适的 pipeline
Evaluate another skill by inspecting its SKILL.md, referenced assets, and runnable helpers, then write a concise audit report plus a machine-readable score summary. Use when the caller asks to evaluate a skill, assess its readiness, or review quality/safety/testability. Do NOT use when the task is to create a new skill from scratch.
| name | image_resizer |
| description | Use this skill to resize images via OpenCV. |
This skill enables an agent to resize and rescale images using OpenCV.
The skill supports:
Interpolation determines how pixel values are computed during resizing. Common interpolation methods are:
INTER_NEAREST → fastest, lowest qualityINTER_LINEAR → balanced defaultINTER_CUBIC → smoother high-quality upscalingINTER_AREA → best for shrinking imagesINTER_LANCZOS4 → high-quality scaling preserving detailIf OpenCV isn't installed, install OpenCV via the following command:
pip install opencv-python -q
OpenCV provides the following function:
cv2.resize(src, dsize[, dst[, fx[, fy[, interpolation]]]])
(width, height)dsize=None)The function returns a resized NumPy image that can be displayed, saved, or further processed.
Use either explicit size (dsize) or scaling factors (fx, fy), not both simultaneously.