Content Creation
#image
read-image
Use when the user asks to read, analyze, describe, or understand the content of an image file (local path or URL). Supports screenshots, photos, diagrams, charts, UI mockups, and any visual content.
DeepseekModel
Curated skill
Quality Good · 48
v1.0.0
Get
https://deepseekmodel.com/api/download.php?id=ardenlab-claude-skills-read-image-skill-md&format=skill
Download .skill
Standard format with system_prompt and model_config, ready for any agent framework
The actual content of the system_prompt field in the .skill file.
name read-image description Use when the user asks to read, analyze, describe, or understand the content of an image file (local path or URL). Supports screenshots, photos, diagrams, charts, UI mockups, and any visual content. Read Image Analyze image content using a vision model via OpenAI-compatible API. Supports local files and URLs. When to Use User asks "what's in this image/screenshot?" User provides an image path or URL and wants it described or analyzed Need to extract text (OCR), identify UI elements, read diagrams/charts User asks to compare or understand visual content Usage Run read_image.py via Bash: # Local file python3 ~/.claude/skills/read-image/read_image.py /path/to/image.png "Describe this image" # URL python3 ~/.claude/skills/read-image/read_image.py "https://example.com/photo.jpg" "What text is in this image?" Arguments: image_source (required): Local file path or http(s):// URL prompt (optional): Instruction for the model. Default: "Describe this image in detail." Output: JSON with success , content (model response), source_type ("local"/"url"), was_resized , usage . Environment Variables ANTHROPIC_BASE_URL — API base URL (must end with /v1 ) ANTHROPIC_AUTH_TOKEN — API key Dependencies openai (required): pip3 install openai Pillow (optional but recommended): pip3 install Pillow — enables automatic image resizing for large files Image Processing Large images are automatically resized (max 2048px, max 3MB) via Pillow Only proportional scaling and JPEG quality compression — never crops URL images are downloaded to memory only, no temp files created Without Pillow, images are sent as-is Common Prompts Task Prompt General description "Describe this image in detail." OCR / text extraction "Extract all text from this image." UI analysis "Describe the UI layout and components." Diagram reading "Explain the diagram and its relationships." Identify content "What is shown in this image?"
Keywords that activate this skill. Click one to copy it.
This skill does not provide trigger words.
The downloaded .skill package contains the following fields.
| Field | Description |
|---|---|
| format | Format tag (skill/v1) |
| skill_id | Unique skill ID |
| name | Skill name |
| version | Version |
| description | Description |
| category | Categories (array) |
| trigger_words | Trigger words |
| tags | Tags |
| source | Source |
| source_url | Source URL (this page) |
| exported_at | Exported at (set per download) |
| system_prompt | System prompt body |
| model_config | Model config: provider / model / temperature / max_tokens / top_p |
| examples | Examples |
| install_guide | Import guide for Coze / Dify / Claude / custom frameworks |
The same skill can be exported in different platform formats.