at-vision

at-vision is a skill for Claude Code from kairyou/agent-tools. It costs 55 tokens per session (1,310 once invoked), scanned A, original, MIT.

A visual-inspection skill for understanding screenshots, photos, diagrams, image files, and image URLs.

In plain words
What is it for?
Use it to inspect an image, answer focused questions about what it shows, or analyze visual details needed for another task.
Why use it?
It helps the coding agent reason about visible content when text-based inspection is unavailable or insufficient.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agent-tools plugin — 8 skills shipped together

Good fit Use it to inspect an image, answer focused questions about what it shows, or analyze visual details needed for another task.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kairyou/agent-tools/at-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 kairyou/agent-tools --skill at-vision
Clone the repo
git clone --depth 1 https://github.com/kairyou/agent-tools

Made for: Claude Code.

Or install agent-tools, the plugin that ships this one along with the rest of its 8 skills.

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 at-vision

README.md
[![agentmods](https://agentmods.dev/badge/skills/kairyou/agent-tools/at-vision.svg)](https://agentmods.dev/skills/kairyou/agent-tools/at-vision)
Your own site
<a href="https://agentmods.dev/skills/kairyou/agent-tools/at-vision"><img src="https://agentmods.dev/badge/skills/kairyou/agent-tools/at-vision.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,310 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Rogue Agent · line 16
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
  • medium MCP Rug Pull · line 71
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
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.00055 $0.01310
Opus 5 $0.00028 $0.00655
Sonnet 5 $0.00011 $0.00262
Haiku 4.5 $0.00006 $0.00131

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

Security

Grade A, and why

at-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.

capabilities/vision/skills/at-vision/SKILL.md · 72 lines

How it starts

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

Visual Reasoning Policy

If the prompt already contains actual image content, or a host image viewer returned that content, inspect it directly and do not call inspect_image. A file path or URL alone is not image content.

When only a file path or URL is available, direct inspection fails, or the user explicitly requests the provider, the inspect_image MCP tool (server agent-tools-vision) sends one image plus narrow factual questions to a configured vision model. You stay in charge of reasoning and the final answer; the vision model only reports observations.

inspect_image is a callable MCP tool, not an MCP resource. Call the tool directly. Never call list_mcp_resources or read_mcp_resource for images, and never use inspect_image as a resource URI.

When fallback inspection is needed, prefer inspect_image. If it is not exposed as a callable tool, or the host/model gateway cannot invoke MCP namespace tools, use the host's shell/command execution tool to run the installed fallback.

First use a structured file-write capability to create a temporary JSON request; do not construct it with shell interpolation. Use the same shape as the MCP input:

{
  "image_source": { "type": "file", "value": "<path>" },
  "questions": [{ "id": "q1", "text": "<question>" }]
}

Choose a temporary request path containing no shell metacharacters, then run:

node "{{VISION_CLI_PATH}}" --request-file "<safe-temp-request.json>" --json

Delete the temporary request file afterward. Quote the command for the active shell: in PowerShell, use single-quoted literal arguments and double any embedded '; in POSIX shells, use single quotes and encode an embedded ' as '"'"'. The installed CLI path and agent-chosen temporary path are the only dynamic command arguments; image paths, URLs, and questions belong only in the JSON file.

Use only this installed CLI: never run npx, install a package, or use MCP resource APIs as a fallback.

When to call — and when not to

Read the full file on GitHub · 72 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 · 72 lines · 55 tokens per session scan A 733212fd2e06

Subscribe to this mod's changes

at-vision is a skill published in the GitHub repository kairyou/agent-tools (179 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 1,310 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

mermaid

Create, validate, and repair Mermaid.js diagrams. Use when generating flowcharts, sequence, class, ER, state, or Gantt diagrams, or any visualization.

rp1-run/rp1 · 36 tokens

vibe-check

Audit UI quality across 8 dimensions and catch AI sameness. Scores design system compliance, visual hierarchy, spacing, contrast, typography, responsive, interactions, and accessibility. Returns a scorecard with priority-ordered fixes. TRIGGER on "vibe check", "UI audit", "design review", "does this look right"…

artttj/rapid-stack · 88 tokens

design

Enforces precise, minimal design for dashboards and admin interfaces. Use when building SaaS UIs, data-heavy interfaces, or any product needing pixel-level discipline.

artttj/rapid-stack · 34 tokens

archify

Create polished, validated architecture, workflow, sequence, data-flow, and lifecycle/state diagrams as explorable standalone HTML with inline SVG, dark/light themes, optional trace motion, and PNG/JPEG/WebP/SVG/WebM export. Accept plain-language requirements or pasted Mermaid flowchart, sequenceDiagram, and…

tt-a1i/archify · 130 tokens

plannotator-annotate

Open Plannotator's annotation UI for a file, folder, or URL, then address the returned annotations.

backnotprop/plannotator · 29 tokens

layout-skill

Layer A layout-mechanics reference. Stacks on any style skill when the screen is an app shell, dashboard, settings, list-detail, mail/inbox, or any layout with fixed regions plus a scrolling body — or when a layout breaks under long, empty, or unbroken content. Owns spatial structure and scroll ownership; owns zero…

code-yeongyu/oh-my-openagent · 88 tokens