Skills image-collect
This skill extracts knowledge from an image and saves it locally.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/bondli/image-collect" ~/.claude/skills/openclaw-skills-image-collect && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/bondli/image-collect" ~/.openclaw/skills/openclaw-skills-image-collect && rm -rf "$T"
manifest:
skills/bondli/image-collect/SKILL.mdsource content
Image Collect Skill
This skill extracts knowledge from an image and saves it locally.
When to use
Use this skill when:
- User sends an image
- User asks to save image as knowledge
- Image needs OCR or content understanding
What it does
- Download image
- Extract text and meaning
- Generate summary
- Save image locally
- Append knowledge to JSON database
Command
Run:
node dist/index.js "<image_url>"
Example:
node dist/index.js "https://example.com/image.png" node dist/index.js "data:image/png;base64,xxxx" node dist/index.js "/tmp/image.png"
Output
Returns extracted knowledge including:
- summary
- keywords
- text
- saved image path