pdf-look-scanned

pdf-look-scanned is a skill for Claude Code, Codex from vladmdgolam/agent-skills. It costs 115 tokens per session (1,524 once invoked), scanned A, original, MIT.

A tool that adds physical-scanner effects to PDF files, such as grayscale, noise, slight rotation, blur, and edge shadows. It can also replace digital signatures with handwritten signatures from a PDF or image.

In plain words
What is it for?
Use it to create scanned-looking PDFs, adjust scan quality, and place extracted handwritten signatures using page coordinates.
Why use it?
It makes a digital PDF resemble a scanned paper document when that appearance is needed.

Skill for Claude CodeCodex

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

Good fit Use it to create scanned-looking PDFs, adjust scan quality, and place extracted handwritten signatures using page coordinates.

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

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 pdf-look-scanned

README.md
[![agentmods](https://agentmods.dev/badge/skills/vladmdgolam/agent-skills/pdf-look-scanned/github.svg)](https://agentmods.dev/skills/vladmdgolam/agent-skills/pdf-look-scanned)
Your own site
<a href="https://agentmods.dev/skills/vladmdgolam/agent-skills/pdf-look-scanned"><img src="https://agentmods.dev/badge/skills/vladmdgolam/agent-skills/pdf-look-scanned/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 pdf-look-scanned

Your own site · 80×15
<a href="https://agentmods.dev/skills/vladmdgolam/agent-skills/pdf-look-scanned"><img src="https://agentmods.dev/badge/skills/vladmdgolam/agent-skills/pdf-look-scanned.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 115 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,524 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.00115 $0.01524
Opus 5 $0.00057 $0.00762
Sonnet 5 $0.00023 $0.00305
Haiku 4.5 $0.00012 $0.00152

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

Security

Grade A, and why

pdf-look-scanned 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 13d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/make_scanned.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/pdf-look-scanned/SKILL.md · 144 lines

How it starts

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

PDF Look Scanned

Make PDFs look like physical scans with optional signature replacement.

Dependencies

pip3 install pillow pdf2image img2pdf numpy

Also requires poppler (provides pdftoppm):

  • macOS: brew install poppler
  • Ubuntu/Debian: apt install poppler-utils
  • Fedora/RHEL: dnf install poppler-utils
  • Arch: pacman -S poppler
  • Windows: conda install -c conda-forge poppler or download from poppler releases

Quick Start

Run scripts/make_scanned.py for the core functionality. Read the script's --help for all options.

Simple scan effect

python3 scripts/make_scanned.py document.pdf

Adjust scan quality

Lower DPI and quality = grittier, more realistic cheap-scanner look:

python3 scripts/make_scanned.py document.pdf --dpi 150 --quality 75 --noise 7

Higher DPI = cleaner scan, larger file:

python3 scripts/make_scanned.py document.pdf --dpi 300 --quality 92

Signature Replacement

Finding signature coordinates

Before replacing signatures, determine crop and placement coordinates. All coordinates are fractions of page dimensions (0.0-1.0).

  1. Convert the source PDF to images and visually inspect to find the signature region
  2. Iteratively crop to isolate just the signature ink (no text, no table lines)
  3. On the target PDF, find the area to clear (old digital signature) and where to paste

Use this Python snippet to explore coordinates interactively:

from pdf2image import convert_from_path
from PIL import Image

pages = convert_from_path("document.pdf", dpi=200)
page = pages[0]  # 0-indexed
w, h = page.size

# Crop a region and save for inspection
crop = page.crop((int(w*0.5), int(h*0.4), int(w*0.8), int(h*0.6)))
import tempfile, os
crop.save(os.path.join(tempfile.gettempdir(), "crop_test.png"))

Replace one signature

python3 scripts/make_scanned.py contract.pdf \
  --sig-pdf signatures.pdf \
  --sig-page 1 --sig-crop 0.41,0.33,0.62,0.42 \
  --sig-target 25 --sig-clear 0.61,0.41,0.85,0.52 --sig-place 0.62,0.415

Read the full file on GitHub · 144 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 13d ago First seen · 144 lines · 115 tokens per session scan A b1ae8f5fddc5

Subscribe to this mod's changes

pdf-look-scanned is a skill published in the GitHub repository vladmdgolam/agent-skills (8 stars, last pushed 5d ago), licensed MIT. It adds 115 tokens to every session and 1,524 once invoked, about $0.0006 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