image-vision

image-vision is a skill for Claude Code, Codex from aduermael/herm. It costs 54 tokens per session (602 once invoked), scanned A, original, MIT.

A visual analysis skill for images and PDFs, including screenshots, scans, charts, diagrams, and handwriting. It extracts information that may not be available from text alone.

In plain words
What is it for?
Reading documents, extracting text from images, inspecting interfaces, and understanding charts or diagrams.
Why use it?
It helps interpret visual details, text in images, and page layout without relying on guesses.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Reading documents, extracting text from images, inspecting interfaces, and understanding charts or diagrams.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aduermael/herm/image-vision
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add aduermael/herm --skill image-vision
Clone the repo
git clone --depth 1 https://github.com/aduermael/herm

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for image-vision

README.md
[![agentmods](https://agentmods.dev/badge/skills/aduermael/herm/image-vision.svg)](https://agentmods.dev/skills/aduermael/herm/image-vision)
Your own site
<a href="https://agentmods.dev/skills/aduermael/herm/image-vision"><img src="https://agentmods.dev/badge/skills/aduermael/herm/image-vision.svg" alt="Measured on agentmods" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 602 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.00602
Opus 5 $0.00027 $0.00301
Sonnet 5 $0.00011 $0.00120
Haiku 4.5 $0.00005 $0.00060

Measured 8d ago against content hash 54aa995cbd6b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

image-vision scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

app/apple/herm/Skills/image-vision/SKILL.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Image Vision

Use the doc module with the exact attachment or local path. Do not guess or rewrite the path.

Read One File

Start with the simplest form:

local result = doc.read("/attachments/conversation-id/photo.jpeg")
print(result)

Images and PDFs default to vision when the vision callback is available. The built-in prompt extracts the document as structured Markdown and describes images, charts, diagrams, and other visual elements. This default is appropriate for most requests. Other supported document types default to structural extraction.

Treat the returned text as the visual model's analysis, then answer the user's question rather than merely repeating the extraction.

Supported visual inputs include PDF, PNG, JPEG, WebP, and GIF files.

Read Multiple Files

Issue all asynchronous reads before awaiting any result so vision requests can run in parallel:

local front = doc.readAsync("/attachments/conversation-id/front.jpeg")
local back = doc.readAsync("/attachments/conversation-id/back.jpeg")

local frontText = front:await()
local backText = back:await()
print(frontText)
print(backText)

Customize The Prompt

Set query only when the user needs a narrower analysis, special output format, or more detail than the default extraction:

local result = doc.read("/attachments/conversation-id/chart.jpeg", {
  query = "Extract the chart's title, axis labels, legend, and data values as a Markdown table."
})
print(result)

Preserve the user's request in the query. Set mode = "vision" when an explicit visual-mode override is useful:

local result = doc.read("/attachments/conversation-id/report.pdf", {
  mode = "vision",
  query = "Describe the page layout and all diagrams."
})
print(result)

Use mode = "structural" for a PDF when machine-readable text matters and visual interpretation is unnecessary. When both appearance and exact embedded text matter, run vision and structural reads separately and distinguish their results. Do not substitute structural extraction for requested visual analysis.

Read the full file on GitHub · 70 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 70 lines · 54 tokens per session scan A 54aa995cbd6b

Subscribe to this mod's changes

image-vision is a skill published in the GitHub repository aduermael/herm (232 stars, last pushed 26d ago), licensed MIT. It adds 54 tokens to every session and 602 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

wowerpoint

Turn one document into a kawaii NotebookLM slide-deck PDF. Use for "wowerpoint this", "make a deck about ", "turn this report into slides", or any request to render a single document as shareable narrative slides.

thedotmack/claude-mem · 55 tokens

pptx

A guide for turning a paper, outline, or structured text into a PowerPoint presentation. It covers an 8–12-slide structure, concise slide points, and generation of a .pptx file.

bojieli/ai-agent-book · 84 tokens

pdf

Read, extract, split, merge, rotate, watermark, fill, OCR, or create PDF files with verification of page counts and text extraction.

Hmbown/CodeWhale · 31 tokens

pptx-posters

Create research posters using HTML/CSS that can be exported to PDF or PPTX. Use this skill ONLY when the user explicitly requests PowerPoint/PPTX poster format. For standard research posters, use latex-posters instead. This skill provides modern web-based poster design with responsive layouts and easy visual…

foryourhealth111-pixel/Vibe-Skills · 66 tokens

slides

Create and edit presentation slide decks (.pptx) with PptxGenJS, bundled layout helpers, and render/validation utilities. Use when tasks involve building a new PowerPoint deck, recreating slides from screenshots/PDFs/reference decks, modifying slide content while preserving editable output, adding…

fcakyon/claude-codex-settings · 83 tokens

pptx

Create and validate Microsoft PowerPoint presentations (.pptx), including structured slide decks, tables, workflows, metadata, and reproducible generation scripts. Use for presentation, slides, PowerPoint, PPT, or PPTX creation and verification tasks.

agents-flex/agents-flex · 50 tokens