pdf-document

pdf-document is a skill for Claude Code, Codex from canvora/canvora-mcp. It costs 65 tokens per session (1,385 once invoked), scanned A, original, MIT.

A Canvora skill for creating paginated documents such as PDFs, brochures, reports, catalogs, and worksheets. It uses page layouts designed for printing and reading.

In plain words
What is it for?
Creating multi-page PDFs and other printable documents, including brochures, proposals, menus, ebooks, cheat sheets, and workbooks.
Why use it?
It helps when content must be arranged across pages with suitable margins, typography, and reading order rather than laid out like presentation slides.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Creating multi-page PDFs and other printable documents, including brochures, proposals, menus, ebooks, cheat sheets, and workbooks.

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

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-document

README.md
[![agentmods](https://agentmods.dev/badge/skills/canvora/canvora-mcp/pdf-document.svg)](https://agentmods.dev/skills/canvora/canvora-mcp/pdf-document)
Your own site
<a href="https://agentmods.dev/skills/canvora/canvora-mcp/pdf-document"><img src="https://agentmods.dev/badge/skills/canvora/canvora-mcp/pdf-document.svg" alt="Measured on agentmods" height="20"></a>
Per session 65 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,385 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.00065 $0.01385
Opus 5 $0.00032 $0.00692
Sonnet 5 $0.00013 $0.00277
Haiku 4.5 $0.00006 $0.00138

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

Security

Grade A, and why

pdf-document 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 7d 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.

skills/pdf-document/SKILL.md · 114 lines

How it starts

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

Multi-page documents and PDFs

Canvora has a dedicated document mode: document_page runs through the structured pipeline with print layout rather than slide layout — margins, reading order, and typography built for a page, not a screen. This is the format behind "make me a brochure / report / company profile / proposal / menu / catalog / lead magnet". Nobody guesses the ID, so you have to know it.

Setup and credits: see the canvora skill.

Format map

Want Format Notes
A multi-page document of any kind document_page 3:4, 816×1056 (US Letter portrait). Carousel format — --slides = number of pages. 15 credits per page.
A single-page one-pager one_pager 816×1056, single image, 10 credits
An exec summary page executive_summary 816×1056
A cheat sheet / reference card cheat_sheet 816×1056
A worksheet / workbook page worksheet 3:4 1200×1600
An ebook / report cover ebook_cover 3:4 1600×2133
A visual mind map mind_map 4:3 1600×1200

Rule: more than one page → document_page with --slides. Exactly one page → the specific single-page format. Cover + pages → ebook_cover in the same call as document_page.

Intake

  1. What is the document? (brochure, report, proposal, menu, profile…) — this goes into the brief verbatim; the pipeline uses it to pick the layout language.
  2. How many pages? If unknown: brochure 4, company profile 6, report 8, menu 2. Max 10 per call — for longer, run consecutive calls and merge at export.
  3. Source? A written doc or PDF is ideal (--file-url), otherwise --input for their copy or --idea for a topic.
  4. Brand kit? Documents are the format where an off-brand result is most obvious. --brand + --logo.

The canonical runs

# Company brochure from existing copy
ID=$(canvora generate --input "$COMPANY_COPY" \
  --format document_page --slides document_page=6 \
  --brand $BRAND --logo --style corporate | head -1)
canvora status "$ID" --json    # repeat every ~30s until completed

# Report PDF from a source document
ID=$(canvora generate --file-url https://example.com/annual-review.pdf \
  --format document_page --slides document_page=8 \
  --brand $BRAND --logo | head -1)
canvora status "$ID" --json

# Lead magnet: cover + 4 pages in one generation
ID=$(canvora generate --idea "The 2026 SEO audit checklist for small e-commerce stores" \
  --format ebook_cover,document_page --slides document_page=4 \
  --brand $BRAND --logo --cta | head -1)
canvora status "$ID" --json

# Restaurant menu, exact prices preserved (2 pages — short enough for --wait)
canvora generate --input "$MENU_TEXT" --exact \
  --format document_page --slides document_page=2 --wait --json

Read the full file on GitHub · 114 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. 7d ago First seen · 114 lines · 65 tokens per session scan A d2b893f82cd5

Subscribe to this mod's changes

pdf-document is a skill published in the GitHub repository canvora/canvora-mcp (0 stars, last pushed 25d ago), licensed MIT. It adds 65 tokens to every session and 1,385 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-31.

Related

Other skills, from other repositories