一键导入
image-processing
Process images for documentation - add borders/shadows to screenshots, create GIFs from videos. Use when preparing visual assets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Process images for documentation - add borders/shadows to screenshots, create GIFs from videos. Use when preparing visual assets.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Produce demo videos of Explorbot runs for social media and presentations — composites the real browser screencast with a simulated terminal replaying real log lines in near real time. Use when asked to create a demo video, promo clip, or presentation video of an Explorbot session.
Diagnose a failed Explorbot session via /explorbot-debug, then propose ONE minimal fix to pilot/tester. Strongly biased toward prompt-only changes; rejects over-engineering.
Generate a structured changelog entry from git changes
Audit AI prompts and rules for web navigation and testing. Use when reviewing src/ai/rules.ts, navigator.ts, or tools.ts for contradictions, gaps, locator guidance, or tool/schema consistency.
Debug failed Explorbot interactions. Analyzes Langfuse traces or log files to find why tests failed and suggests Knowledge fixes.
Interactive XPath testing against HTML files in test-data/. Find elements by iteratively querying XPath expressions.
| name | image-processing |
| description | Process images for documentation - add borders/shadows to screenshots, create GIFs from videos. Use when preparing visual assets. |
Commands for processing images and videos for documentation.
convert input.png \
-bordercolor '#e0e0e0' -border 1 \
\( +clone -background '#00000040' -shadow 80x8+4+4 \) \
+swap -background white -layers merge +repage \
output.png
Parameters:
-border 1 — thin gray border-shadow 80x8+4+4 — 80% opacity, 8px blur, 4px offsetffmpeg -ss 0:44 -to 0:54 -i input.mp4 \
-vf "fps=10,scale=800:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" \
-loop 0 output.gif
Parameters:
-ss 0:44 -to 0:54 — start/end timestampsfps=10 — frames per secondscale=800:-1 — width 800px, auto height# Check dimensions
identify -format "%wx%h\n" image.png
# Check video duration
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 video.mp4
# Resize image
convert input.png -resize 800x output.png