Claude-skill-registry image_concatenator
A utility skill to vertically concatenate multiple images into a single file.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/image-concatenator" ~/.claude/skills/majiayu000-claude-skill-registry-image-concatenator && rm -rf "$T"
manifest:
skills/data/image-concatenator/SKILL.mdsource content
Image Concatenator
This skill provides a tool to vertically merge images.
Capabilities
- Concatenate: Merges list of images into one.
How to use
Use the
run_bash tool to run the skill’s script.
Provide the output path first, followed by one or more input image paths. Resolve the script path from the skill root before invoking the tool. The script lives at
scripts/concatenate_images.py.
Example: If the user asks to merge
a.png and b.png into result.png, run the run_bash
tool with scripts/concatenate_images.py result.png a.png b.png as the command.