visual-inspector

visual-inspector is a skill for Claude Code, Codex from OpenRaiser/PaperFit. It costs 0 tokens per session (2,557 once invoked), scanned B, original, MIT.

A workflow for turning a PDF into one image per page so people or other tools can inspect its visual layout. It also produces a JSON report and can render selected pages or cropped regions for closer review.

In plain words
What is it for?
Use it after PDF builds, during manual visual checks, before and after layout fixes, or when reviewing a specific page or cropped region.
Why use it?
It makes layout problems visible after a PDF is compiled, including issues in tables, formulas, or page formatting. The report records what was rendered and where the files were saved.

Skill for Claude CodeCodex

Part of the paperfit plugin — 8 skills, 9 commands, 6 agents shipped together

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.

agentmods
npx agentmods add skills/openraiser/paperfit/visual-inspector
Any agent
npx skills add OpenRaiser/PaperFit --skill visual-inspector
Clone the repo
git clone --depth 1 https://github.com/OpenRaiser/PaperFit

Made for: Claude Code, Codex.

Or install paperfit, the plugin that ships this one along with the rest of its 8 skills, 9 commands, 6 agents.

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 visual-inspector

README.md
[![agentmods](https://agentmods.dev/badge/skills/openraiser/paperfit/visual-inspector.svg)](https://agentmods.dev/skills/openraiser/paperfit/visual-inspector)
Your own site
<a href="https://agentmods.dev/skills/openraiser/paperfit/visual-inspector"><img src="https://agentmods.dev/badge/skills/openraiser/paperfit/visual-inspector.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,557 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. Scan, not verified.
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 $0.00000 $0.02557
Opus 5 $0.00000 $0.01278
Sonnet 5 $0.00000 $0.00511
Haiku 4.5 $0.00000 $0.00256

Measured 5d ago against content hash 07905f6f4f32, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade B, and why

visual-inspector scanned grade B with 1 finding 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 5d 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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo apt-get install poppler-utils
skills/visual-inspector/SKILL.md · 237 lines

How it starts

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

Visual Inspector Skill

概述

本技能是 PaperFit 视觉排版优化闭环中的关键环节,专门负责 PDF 页图渲染与视觉验收指导。它封装了将 PDF 转换为逐页高分辨率图片的标准化流程,并为 layout-detective-agentquality-gatekeeper-agent 提供详细的逐页视觉检查清单。

该技能由 orchestrator-agent 在每次编译后调用,确保多模态证据链中的“页图”环节可靠、一致且可复现。

适用场景

  • 每次编译成功后,需生成页图供视觉 Agent 审查。
  • 手动触发视觉检查(如 /check-visual 命令)。
  • 修复前后对比验证。

输入规范

输入项 来源 必需 说明
PDF 文件路径 编译输出 通常为 main.pdf
输出目录 配置或默认 页图存放目录,默认为 data/pages/
DPI 参数 配置或调用方指定 渲染分辨率,默认 220 DPI
页码范围 调用方指定 ⚠️ 若为空,渲染全部页面
局部裁剪参数 调用方指定 ⚠️ {page: 5, bbox: [x,y,w,h]},用于表格/公式局部复查

输出规范

本技能输出两份产物:

  1. 页图文件集:PNG 或 JPG 格式的逐页图片,命名规则为 page_001.pngpage_002.png 等。
  2. 渲染报告 JSON
{
  "skill": "visual-inspector",
  "status": "success | partial | failed",
  "pdf_path": "main.pdf",
  "output_dir": "data/pages/",
  "dpi": 220,
  "pages_rendered": 9,
  "page_files": [
    {"page": 1, "file": "data/pages/page_001.png", "width": 1700, "height": 2200},
    {"page": 2, "file": "data/pages/page_002.png", "width": 1700, "height": 2200}
  ],
  "cropped_regions": [
    {
      "page": 5,
      "object": "Table 2",
      "file": "data/pages/page_005_table2.png",
      "bbox": [100, 450, 800, 300]
    }
  ],
  "errors": []
}

渲染流程

第一步:环境检查

  1. 确认 PDF 文件存在且可读。
  2. 检查 Python 环境及所需依赖:
    • pdf2image
    • Poppler 工具(pdftoppmpdftocairo

若 Poppler 未安装,根据操作系统提供安装指引:

# Debian/Ubuntu
sudo apt-get install poppler-utils

# macOS
brew install poppler

# Windows
# 下载 poppler 并添加到 PATH,或使用 conda install -c conda-forge poppler
  1. 若依赖缺失,报告错误并终止,由上层 Agent 提示用户安装。

第二步:执行渲染

禁止在用户 LaTeX 项目里假设存在 scripts/render_pages.py。页图渲染由 PaperFit npm/CLI 包提供,在论文项目根目录执行:

paperfit render <相对或绝对路径的.pdf> --output data/pages --dpi 220
# 示例
paperfit render main.pdf --dpi 300

前提:npm install -g paperfit-cli(或等价全局安装),paperfitPATH 中。输出目录 --output 相对于当前工作目录(一般为论文根目录)。

其它包内 Python/Bash(如 parse_log.pystate_manager.py)一律在论文根目录使用 paperfit run scripts/<文件名> [参数…],勿在用户项目里假设存在同名 scripts/

Read the full file on GitHub · 237 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. 5d ago First seen · 237 lines · 0 tokens per session scan B 07905f6f4f32

Subscribe to this mod's changes

visual-inspector is a skill published in the GitHub repository OpenRaiser/PaperFit (331 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,557 tokens. A static security scan graded it B with 1 finding (asks for root). 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

pdf

Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.

Alenryuichi/openmemory-plus · 50 tokens

pptx

Presentation creation, editing, and analysis. When Claude needs to work with presentations (.pptx files) for: (1) Creating new presentations, (2) Modifying or editing content, (3) Working with layouts, (4) Adding comments or speaker notes, or any other presentation tasks.

Alenryuichi/openmemory-plus · 62 tokens

pdf

当用户需要对PDF文件进行任何操作时,请使用此技能。包括从 PDF 中读取或提取文本/表格、合并多个 PDF、拆分 PDF、旋转页面、添加水印、创建新PDF、填写PDF表单、加密/解密 PDF、提取图片,以及对扫描版 PDF 进行 OCR 使其可搜索。如果用户提到 .pdf 文件或要求生成 PDF,请使用此技能。.

agentscope-ai/QwenPaw · 95 tokens

nano-pdf

Edits PDF files using natural-language instructions via the nano-pdf CLI. Supports modifying text, changing titles, fixing typos, and updating content on specific pages. Use when the user wants to edit a PDF, modify PDF content, update PDF text, fix a typo in a PDF, change a PDF title, or rewrite part of a PDF page.

elizaOS/eliza · 75 tokens

pdf-toolkit

Structured .pdf operations: extract text/tables, merge pages from multiple PDFs, split a PDF by page ranges, fill PDF form fields, and generate fresh PDFs from JSON. Trigger when the user wants programmatic PDF work without natural-language rewriting — examples: pull tables from a report, combine three PDFs, extract…

opensquilla/opensquilla · 127 tokens

hive.pdf

Read, write, merge, split, rotate, watermark, encrypt, and OCR PDF files using Python (pypdf, pdfplumber, reportlab, pypdfium2) and command-line tools (poppler-utils, qpdf). Use when the user asks to extract text/tables/images from a PDF, create or modify a PDF, combine or split PDFs, OCR a scanned PDF…

aden-hive/hive · 98 tokens