Install
openclaw skills install screenshot-stitcherUse when the task is to stitch multiple vertically scrolling iPhone screenshots into a single long image with the local screenshot-stitcher CLI. Best for same-device inputs in the intended order, and especially useful when the user needs help choosing crop or edge-margin flags.
openclaw skills install screenshot-stitcherUse 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.
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.
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.
screenshot-stitcher img1.png img2.png img3.png -o output.png
python3 main.py img1.png img2.png img3.png -o output.png
--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--x-margin.--no-navbar or a custom --top-crop.