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.
npx agentmods add instructions/prototype-cafe-llc/pdf_extractor/claude-mdgit clone --depth 1 https://github.com/Prototype-Cafe-LLC/pdf_extractorWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01134 | $0.01134 |
| Opus 5 | $0.00567 | $0.00567 |
| Sonnet 5 | $0.00227 | $0.00227 |
| Haiku 4.5 | $0.00113 | $0.00113 |
Grade C, and why
pdf_extractor CLAUDE.md scanned grade C with 2 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 2d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -LsSf https://astral.sh/uv/install.sh | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -LsSf https://astral.sh/uv/install.sh | sh How it starts
The opening of the file, as written. The whole thing — 167 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
PDF Extractor
PDFを markdownに展開する (Convert PDF files to Markdown format)
Project Overview
A command-line tool that converts PDF files to Markdown format using pymupdf4llm. The tool supports both single file and batch processing of entire directories.
Development Commands
Setup and Dependencies
# Install uv if not already installed
curl -LsSf https://astral.sh/uv/install.sh | sh
# Create virtual environment and install dependencies
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
uv pip install pymupdf4llm
# Add new dependencies
uv pip install <package-name>
# Install markdownlint globally for markdown validation
npm install -g markdownlint-cli
Running the Application
# Convert a single PDF file
python -m src.pdf_extractor document.pdf -o output_folder
# Convert multiple PDF files
python -m src.pdf_extractor doc1.pdf doc2.pdf doc3.pdf -o output_folder
# Convert all PDFs in a directory
python -m src.pdf_extractor /path/to/pdf/folder -o output_folder
# Use default output directory (creates 'md' subfolder)
python -m src.pdf_extractor document.pdf
# Or use the installed command (after pip install)
pdf-extractor document.pdf
Testing
# Run all tests (once test framework is set up)
# TODO: Add test command once testing framework is chosen
# Run specific test file
# TODO: Add specific test command
Code Quality
# Format code with ruff
uv run ruff format .
# Check linting
uv run ruff check .
# Type checking with mypy
uv run mypy src/
# Validate markdown files with markdownlint
markdownlint "**/*.md"
# Fix auto-fixable markdown issues
markdownlint --fix "**/*.md"
Architecture
Core Components
- src/pdf_extractor/ - PDF conversion module
- cli.py: Main entry point
- converter.py: Core conversion logic
- Handles command-line argument parsing
- Manages file/directory input processing
- Coordinates the conversion workflow
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.
- 2d ago First seen · 167 lines · 1,134 tokens per session scan C 989a08c97ef1
pdf_extractor CLAUDE.md is an instructions file published in the GitHub repository Prototype-Cafe-LLC/pdf_extractor (0 stars, last pushed 1y ago), licensed MIT. It adds 1,134 tokens to every session, about $0.0057 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other instructions, from other repositories
translate-book CLAUDE.md
Instructions for deusyu/translate-book, covering claude.md, project, structure, testing changes and then run translation via the skill.
PDF-Writer CLAUDE.md
Instructions for galkahana/PDF-Writer, covering claude code context - pdf-writer development guide, project overview, coding standards discovered, project structure and key components.
zpdf CLAUDE.md
Instructions for Xero-Team/zpdf, covering claude.md, build & test commands, architecture, key design constraints and code patterns.
pdf-toolkit-mcp CLAUDE.md
Instructions for AryanBV/pdf-toolkit-mcp, covering pdf-toolkit-mcp, 1. project overview, 2. tech stack, 3. project structure and 4. mcp sdk patterns.
notebooklm-wiki-pipeline CLAUDE.md
Instructions for capitalparser/notebooklm-wiki-pipeline, covering 05notebooklmwikipipeline — 프로젝트 컨텍스트, 핵심 문제, 아키텍처, 도구 구성 and 슬래시 커맨드.
agentic-resume-builder CLAUDE.md
Claude Code instructions for WtotdeD/agentic-resume-builder, covering agentic-resume-builder development guidelines, what this repo is, active technologies, package manager and validation.