vision-skills

vision-skills is a skill for Codex from Anionex/agent-vision-toolkit. It costs 132 tokens per session (4,016 once invoked), scanned A, original, MIT.

A collection of local tools that let a coding agent inspect images, find objects, read text, measure shapes, crop regions, and convert HTML into screenshots.

In plain words
What is it for?
Use it to describe images, perform OCR, locate or count elements, trace geometry, extract image regions, inspect colours, or capture HTML pages.
Why use it?
It provides image understanding and extraction abilities when text-based inspection is not enough.

Skill for Codex

Written for Codex: agents/openai.yaml present.

Good fit Use it to describe images, perform OCR, locate or count elements, trace geometry, extract image regions, inspect colours, or capture HTML pages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/anionex/agent-vision-toolkit/vision-skills
About the project

Agent Vision Toolkit gives text-only coding agents tools for understanding images, including image questions, OCR for long screenshots, frontend reconstruction, and GUI automation. Developers use it to add visual capabilities to agents that cannot process images natively, with optional integrations for several coding-agent systems. The catalogue skill teaches agents how to use these vision tools.

Anionex/agent-vision-toolkit · 1,186 stars · on GitHub · agent-vision.anionex.me

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 Anionex/agent-vision-toolkit --skill vision-skills
Clone the repo
git clone --depth 1 https://github.com/Anionex/agent-vision-toolkit

Made for: 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 vision-skills

README.md
[![agentmods](https://agentmods.dev/badge/skills/anionex/agent-vision-toolkit/vision-skills/github.svg)](https://agentmods.dev/skills/anionex/agent-vision-toolkit/vision-skills)
Your own site
<a href="https://agentmods.dev/skills/anionex/agent-vision-toolkit/vision-skills"><img src="https://agentmods.dev/badge/skills/anionex/agent-vision-toolkit/vision-skills/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vision-skills

Your own site · 80×15
<a href="https://agentmods.dev/skills/anionex/agent-vision-toolkit/vision-skills"><img src="https://agentmods.dev/badge/skills/anionex/agent-vision-toolkit/vision-skills.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 132 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,016 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.00132 $0.04016
Opus 5 $0.00066 $0.02008
Sonnet 5 $0.00026 $0.00803
Haiku 4.5 $0.00013 $0.00402

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

Security

Grade A, and why

vision-skills 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 9d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/dominant_colors.py, scripts/extract_fg.py, scripts/html_shot.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/vision-skills/SKILL.md · 323 lines

How it starts

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

vision-skills

Five local CLIs that give a text-only agent eyes. They read one shared vision config (VISION_API_KEY / VISION_BASE_URL / VISION_MODEL / LANG), plus the optional Python-client settings VISION_API_PROTOCOL, VISION_REASONING_EFFORT, and VISION_USER_AGENT — no extra credentials.

Pick the tool by the question you are answering:

Question Tool
"What does this image show / say?" glance
"Where is X?" — a thing you can name ground
"Where are all the Xs?" — every instance of a kind detect
"What is its exact shape, size, offset?" trace
"Cut this box out as its own image file" crop
"OCR this long screenshot / scrolling page / chat history" scripts/long_screenshot_ocr.py
"Extract the icon/logo foreground as transparent PNG — manual region or auto (cropped+scaled screenshots)" scripts/extract_fg.py
"Turn this HTML file into a viewport or full-page screenshot" scripts/html_shot.py
"Which colours dominate a region, and which palette value fits it?" scripts/dominant_colors.py
A relation none of them return — a gap, a distance between two located things code over the pixels (Pillow)

glance answers what something is; ground and detect answer where. You give ground a description of a particular thing; you give detect a kind and it enumerates the instances.

Both give real coordinates, but they are not pixel-exact: the box arrives on a 0-1000 grid and is scaled to your image, so the last pixel or few are not reliable. That is accurate enough to crop with, to click, to compare positions against. When a number has to be exact, trace derives it from the actual pixels — offsets, sizes, shapes.

Use the provided tools before hand-rolled pixels

Everything this toolkit ships a tool for, call the tool — do not rewrite it with Pillow in the middle of a task. The CLIs exist so the same pixel work is not hand-coded differently every time:

  • cut a box out of an image → crop, not Image.open(...).crop(...)
  • sample a region's palette → scripts/dominant_colors.py
  • compare two images → scripts/pixel_diff.py
  • vectorize to SVG → trace
  • locate / inventory elements → ground / detect
  • describe / OCR an image → glance
  • safely split, OCR, and merge a long screenshot → scripts/long_screenshot_ocr.py
  • HTML file to a viewport or full-page screenshot → scripts/html_shot.py

Read the full file on GitHub · 323 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. 9d ago First seen · 323 lines · 132 tokens per session scan A d902eab31823

Subscribe to this mod's changes

vision-skills is a skill published in the GitHub repository Anionex/agent-vision-toolkit (1,186 stars, last pushed 12d ago), licensed MIT. It adds 132 tokens to every session and 4,016 once invoked, about $0.0007 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

Image Generation

Generate images from a text prompt. Uses Black Forest Labs Flux by default, with OpenAI DALL-E as an alternate.

winsenlabs/platos · 28 tokens

brandkit

Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional…

creativedswork/dscode · 89 tokens

imagegen-frontend-web

Elite frontend image-direction skill for generating premium, conversion-aware website design references. CRITICAL OUTPUT RULE — generate ONE separate horizontal image FOR EVERY section. A landing page with 8 sections produces 8 images. Never compress multiple sections into one image. Enforces composition variety (not…

Leonxlnx/taste-skill · 126 tokens

brandkit

Premium brand-kit image generation skill for creating high-end brand-guidelines boards, logo systems, identity decks, and visual-world presentations. Trained for minimalist, cinematic, editorial, dark-tech, luxury, cultural, security, gaming, developer-tool, and consumer-app brand systems. Optimized for intentional…

Leonxlnx/taste-skill · 89 tokens

skin-creator

Create and apply a two-asset LobsterAI visual skin from the user's style description. Use only when the AI Skin Designer kit supplies the structured skinpack workflow marker; do not use for ordinary theme or image requests.

netease-youdao/LobsterAI · 48 tokens

sn-infographic

An image-making tool that turns supplied content into an infographic, a visual format for explaining information with arranged text and graphics.

OpenSenseNova/SenseNova-Skills · 57 tokens