Borrowing it
Nothing to install: this file belongs to FilippoScaramuzza/agentic-reviewer. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/FilippoScaramuzza/agentic-reviewer/main/.cursor/skills/generate-pdf/SKILL.mdgit clone --depth 1 https://github.com/FilippoScaramuzza/agentic-reviewerWrote 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.
[](https://agentmods.dev/skills/filipposcaramuzza/agentic-reviewer/generate-pdf)<a href="https://agentmods.dev/skills/filipposcaramuzza/agentic-reviewer/generate-pdf"><img src="https://agentmods.dev/badge/skills/filipposcaramuzza/agentic-reviewer/generate-pdf/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.
<a href="https://agentmods.dev/skills/filipposcaramuzza/agentic-reviewer/generate-pdf"><img src="https://agentmods.dev/badge/skills/filipposcaramuzza/agentic-reviewer/generate-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00041 | $0.00751 |
| Opus 5 | $0.00020 | $0.00376 |
| Sonnet 5 | $0.00008 | $0.00150 |
| Haiku 4.5 | $0.00004 | $0.00075 |
Grade A, and why
generate-pdf 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 87 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Generate PDF
Convert a Markdown report file into a professionally formatted, readable PDF.
Prerequisites
- pandoc:
brew install pandoc(macOS) or see pandoc.org - LaTeX engine:
brew install --cask mactexor use tectonic (brew install tectonic) - Check:
which pandoc && which xelatex
Primary Command (pandoc + XeLaTeX)
pandoc <input.md> -o <output.pdf> \
--pdf-engine=xelatex \
-V geometry:margin=2.5cm \
-V fontsize=11pt \
-V mainfont="Helvetica" \
-V monofont="Menlo" \
-V colorlinks=true \
-V linkcolor=blue \
-V urlcolor=blue \
--metadata title="Peer Review Report" \
--metadata date="$(date +%Y-%m-%d)" \
--highlight-style=tango \
--toc \
--toc-depth=2
Explanation of Options
--pdf-engine=xelatex— XeLaTeX handles Unicode and custom fonts-V geometry:margin=2.5cm— readable margins (not too narrow)-V fontsize=11pt— comfortable reading size-V mainfont="Helvetica"— clean sans-serif body text-V monofont="Menlo"— readable monospace for code/tables-V colorlinks=true— clickable links in blue--highlight-style=tango— pleasant code syntax highlighting--toc— table of contents for navigation--toc-depth=2— include H1 and H2 in TOC
Fallback: pandoc + HTML + wkhtmltopdf
If XeLaTeX is not available:
pandoc <input.md> -o <output.pdf> --pdf-engine=wkhtmltopdf
Fallback: pandoc + LaTeX (pdflatex)
If XeLaTeX is not available but pdflatex is:
pandoc <input.md> -o <output.pdf> \
--pdf-engine=pdflatex \
-V geometry:margin=2.5cm \
-V fontsize=11pt \
-V colorlinks=true \
-V linkcolor=blue \
-V toccolor=gray \
--metadata title="Peer Review Report" \
--toc
Fallback: Install tools if missing
# Install pandoc
brew install pandoc
# Install LaTeX (large download)
brew install --cask mactex
# Or use tectonic (lighter alternative)
brew install tectonic
Quality Notes
- The PDF should be readable when printed (good contrast, reasonable font size)
- Tables should render properly (pandoc handles Markdown tables natively)
- The table of contents makes longer reports navigable
- Links (URLs, internal references) should be clickable
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.
- 9d ago First seen · 87 lines · 41 tokens per session scan A 7c37ae9bbfd1
generate-pdf is a skill published in the GitHub repository FilippoScaramuzza/agentic-reviewer (2 stars, last pushed 2mo ago), licensed MIT. It adds 41 tokens to every session and 751 once invoked, about $0.0002 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.
Other skills, from other repositories
review-export
Export CocoReview reports as markdown, html, or pdf-ready status artifacts. Usage: $review export markdown|html|pdf [report-path].
slides
Create and edit presentation decks as single self-contained HTML files with a live, editable preview and print-to-PDF export. Use when the user wants slides, a deck, or a presentation.
Read and extract text from .pdf files, page by page. Use when the user uploads or references a PDF to read or summarize.
audit-export
Export the full CocoAudit trail as a stakeholder-ready compliance document.
liteparse
Provides fast document to markdown extraction. Use this skill when the user asks to parse, perform multi-format document conversion or spatially extract text from an unstructured file (PDF, DOCX, PPTX, XLSX, images, etc.) locally.
design-drawing-svg-md
Use when converting vector PDF engineering drawings (steel-structure shop drawings, A0 drawings, linework-only PDFs without a text layer) into LLM-consumable dual-carrier records — semantic Markdown reading thread plus layered SVG geometry archive linked by shared IDs and crosswalk.