OCR, tag, search, deduplicate, and organize screenshots. Makes screenshots searchable by content, detects and removes duplicates, groups by topic, and generates a searchable index. Use when a user has hundreds of unorganized screenshots and needs to find, clean, or categorize them.
设计与多媒体
Screenshot Stitcher
试用Use when the task is to stitch multiple vertically scrolling iPhone screenshots into a single long image with the local screenshot-stitcher CLI. Best for sam...
它能做什么
Use when the task is to stitch multiple vertically scrolling iPhone screenshots into a single long image with the local screenshot-stitcher CLI. Best for sam...
技能文档
Screenshot Stitcher
Use this skill when the user wants to combine multiple iPhone screenshots into one long image.
The CLI contract is intentionally small, so the same workflow ports cleanly into Claude, Codex, OpenClaw, Hermes, and similar agent wrappers that can invoke shell commands. The tool is OpenCV/NumPy-driven local image processing, not AI image generation.
Privacy
All image processing happens locally in the user's Python process. The CLI reads screenshots from disk, writes the stitched output back to disk, and does not upload screenshots, filenames, or image metadata to any external service.
Install The CLI
Prefer the published PyPI package:
pip install screenshot-stitcher
screenshot-stitcher --help
If the machine has multiple Python environments, install into the environment the agent will use:
python -m pip install screenshot-stitcher
screenshot-stitcher --help
If the package is already installed, skip installation and use the CLI directly.
Workflow
- Confirm the inputs are vertically scrolling screenshots from the same device width.
- Preserve the user's input order. Do not reorder by timestamp.
- Use the installed CLI:
screenshot-stitcher img1.png img2.png img3.png -o output.png
- If the package cannot be installed but the agent is inside a cloned checkout, run the repo entrypoint instead:
python3 main.py img1.png img2.png img3.png -o output.png
- After writing the output file, report the path and mention any low-confidence overlaps printed by the CLI.
Useful Flags
--no-navbar: page has no navigation bar--no-tabbar: page has no bottom tab bar--top-crop N: manual top crop override--bottom-crop N: manual bottom crop override--x-margin N: ignore more left/right edge pixels during matching--template-height N: adjust the template height used for overlap matching--threshold V: raise or lower overlap acceptance sensitivity
Heuristics
- Start with the default command before tuning flags.
- If the page has sticky bars, floating controls, or scroll indicators, try a larger
--x-margin. - If the top chrome changes during scrolling, try
--no-navbaror a custom--top-crop. - If overlap confidence is low but the output is visually correct, report that explicitly instead of pretending the score is strong.
- If the input screenshots are out of order or have different widths, stop and surface that clearly.
相关技能
把截图上传到 img402.dev,拿到一个可在 GitHub PR、Issue、评论里使用的图片链接。
Use this skill when you need to take website screenshots with ScreenshotOne using direct curl commands, save the result to a local file, or choose Screenshot...
Use this skill when you need to take website screenshots with ScreenshotOne using direct curl commands, save the result to a local file, or choose Screenshot...
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
Perform OCR on image files (jpg, png, bmp, gif, tiff) using the system's `tesseract` binary and return extracted plain text.