vision-multimodal
Vision and multimodal capabilities for Claude including image analysis, PDF processing, and document understanding. Activate for image input, base64 encoding, multiple images, and visual analysis.
npx skills add majiayu000/claude-skill-registry --skill vision-multimodal-lobbi-docs-claude-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Vision & Multimodal Skill Leverage Claude's vision capabilities for image analysis, document processing, and multimodal understanding. ## When to Use This Skill - Image analysis and description - Document/PDF processing - Screenshot analysis - OCR-like text extraction - Visual comparison - Chart and diagram interpretation ## Supported Formats | Format | Status | Best For | |--------|--------|----------| | JPEG | ✓ | Photos, natural scenes | | PNG | ✓ | Screenshots, UI, text | | GIF | ✓ | Animated (first frame) | | WebP | ✓ | Modern, compressed | | PDF | ✓ | Documents (via Files API) | ## Image Size Guidelines - **Minimum:** 200 pixels (smaller = reduced accuracy) - **Optimal:** 1000x1000 pixels - **Maximum:** 8000x8000 pixels - **Token cost:** ~(width × height) / 1000 - **Tip:** Resize to 1568px max dimension for 30-50% token savings ## Core Patterns ### Pattern 1: Single Image Analysis ```python import anthropic import base64 client = anthropic.Anthropic() # Load and encode image with open("image.jpg", "rb") as f: image_data = base64.standard_b64encode(f.read()).decode("utf-8") response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "rol
- When to Use This Skill
- Supported Formats
- Image Size Guidelines
- Core Patterns
- Pattern 1: Single Image Analysis
- Pattern 2: Image from URL
- Pattern 3: Multiple Images
- Pattern 4: Few-Shot with Images
- Pattern 5: PDF Processing
- Prompt Engineering for Vision
- Strategy 1: Role Assignment
- Strategy 2: Step-by-Step Thinking
- Strategy 3: Structured Output
- Image Optimization
What does the vision-multimodal skill do?
Vision and multimodal capabilities for Claude including image analysis, PDF processing, and document understanding. Activate for image input, base64 encoding, multiple images, and visual analysis.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill vision-multimodal-lobbi-docs-claude-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
