vedix-vlm-reviewer

vedix-vlm-reviewer is an agent for Claude Code from danilkotelnikov/vedix. It costs 100 tokens per session (1,108 once invoked), scanned A, original, MIT.

A reviewer for figures in a compiled scientific paper. It examines rendered pages or images to find duplicates, check captions against figure content, and assess clarity, relevance, and quality.

In plain words
What is it for?
Use it to review manuscript.pdf or PNG figures and create a visual review report with per-figure scores and alignment checks.
Why use it?
It helps catch visual problems that may be missed when reviewing the manuscript text alone, including figures that do not support the surrounding discussion.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions Codex.

Part of the vedix plugin — 1 skill, 6 commands, 16 agents, 4 hooks, 10 MCP servers shipped together

Good fit Use it to review manuscript.pdf or PNG figures and create a visual review report with per-figure scores and alignment checks.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/danilkotelnikov/vedix/vlm-reviewer
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.

Clone the repo
git clone --depth 1 https://github.com/danilkotelnikov/vedix

Made for: Claude Code.

Or install vedix, the plugin that ships this one along with the rest of its 1 skill, 6 commands, 16 agents, 4 hooks, 10 MCP servers.

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 vedix-vlm-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/agents/danilkotelnikov/vedix/vlm-reviewer/github.svg)](https://agentmods.dev/agents/danilkotelnikov/vedix/vlm-reviewer)
Your own site
<a href="https://agentmods.dev/agents/danilkotelnikov/vedix/vlm-reviewer"><img src="https://agentmods.dev/badge/agents/danilkotelnikov/vedix/vlm-reviewer/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 vedix-vlm-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/agents/danilkotelnikov/vedix/vlm-reviewer"><img src="https://agentmods.dev/badge/agents/danilkotelnikov/vedix/vlm-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 100 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,108 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.
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.00100 $0.01108
Opus 5 $0.00050 $0.00554
Sonnet 5 $0.00020 $0.00222
Haiku 4.5 $0.00010 $0.00111

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

Security

Grade A, and why

vedix-vlm-reviewer 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 10d 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.

plugins/vedix/agents/vlm-reviewer.md · 113 lines

How it starts

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

VLM Reviewer

Vision-language review of all figures in the compiled manuscript. Two execution paths — pick one based on <input name="route">:

  1. route=canonical_script (default for benchmark runs): invoke the canonical Sakana implementation directly via Bash:

    python ${plugin_root}/mcp/lib/sakana/perform_vlm_review.py \
      --pdf <output_dir>/manuscript.pdf \
      --output <output_dir>/visual_review.json \
      --model gpt-4o
    

    This produces visual_review.json with the canonical schema (per-figure scores, duplicate detection, caption-content alignment).

  2. route=md_agent (default for partial intents like "review my figures"): you do the review yourself reading the PNGs the orchestrator inlines.

Inputs

  • <input name="route">canonical_script | md_agent (default md_agent)
  • <input name="output_dir"> — job output dir; expects manuscript.pdf and/or figures/*.png
  • <input name="rendered_pages"> — list of PNG paths (used in md_agent mode)
  • <input name="manuscript_text"> — first 4000 chars (used in md_agent mode for caption-context)
  • <input name="palace_path">${output_dir}/.palace (per-project; do NOT touch any other path)

Universal MemPalace contract

Before starting:

mcp__mempalace__wake_up(root="${palace_path}", token_budget=2000)

to load any prior visual-review notes from earlier runs of this same project.

After completing:

mcp__mempalace__mine(
  root="${palace_path}",
  content="<your visual review summary + flagged issues>",
  tags=["vedix", "phase:8.5", "agent:vlm-reviewer", "route:<route>"]
)

The palace is project-scoped. Never read or write any other path.

md_agent route — manual VLM review

For each figure:

  1. Read the rendered PNG (your Read tool is multimodal — you see the image).
  2. Score on 1–4 each: clarity, relevance to text, caption accuracy, visual quality.
  3. Detect issues:
    • Overlapping labels, illegible axis text
    • Missing units or legend
    • Unrendered LaTeX in the figure (e.g. raw \beta instead of β)
    • Caption refers to a panel/element not visible in the figure
    • Duplicate or near-duplicate figures (compare against the previous figure)
    • Resolution problems (pixelation, font fallbacks)
  4. Severity: high (blocks publication), medium (needs revision), low (cosmetic).

Read the full file on GitHub · 113 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. 10d ago First seen · 113 lines · 100 tokens per session scan A 3edd3709d873

Subscribe to this mod's changes

vedix-vlm-reviewer is an agent published in the GitHub repository danilkotelnikov/vedix (3 stars, last pushed 3mo ago), licensed MIT. It adds 100 tokens to every session and 1,108 once invoked, about $0.0005 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-31.

Related

Other agents, from other repositories

doc-author

Drafts and edits executable Stencila documents (.smd, .myst, .qmd). Use when the user asks to write, draft, extend or restructure a Stencila document, add executable code chunks, figures, tables or parameters to one, or turn an analysis into a reproducible document. Verifies its work by executing before reporting done.

stencila/stencila · 76 tokens

generate engineering deliverables

Generates the full engineering deliverables package for a field development or process design study. Takes a completed ProcessSystem and study class (A/B/C) and produces PFDs, thermal utility summaries, alarm/trip schedules, instrument schedules (with live device bridge), spare parts inventories, fire scenario…

equinor/neqsim · 86 tokens

fatal-error-check

Fast pre-review check for fatal errors in LaTeX papers. Launch BEFORE full review agents (paper-critic, domain-reviewer, referee2-reviewer). Binary PASS/FAIL verdict in 15-30 seconds. Checks compilation, placeholders, broken references, number contradictions, and section completeness. Examples: Example 1: user: "Quick…

flonat/flonat-research · 180 tokens

latex-engineer

LaTeX and scientific document specialist — venue templates, figures, tables, bibliographies, TikZ diagrams.

cdeust/zetetic-team-subagents · 25 tokens

wtfp-section-writer

Execute an approved section plan into evidence-grounded academic prose or the explicitly requested scaffold. Preserve the author’s epistemic authority, make only supported claims, and leave an auditable account of what was produced and what remains unresolved.

akougkas/wtf-p · 51 tokens

latex-implementation-agent

Implement LaTeX documents following implementation plans.

benbrastmckie/nvim · 13 tokens