agentic-reviewer: Skill for Claude Code

.cursor/skills/generate-pdf/SKILL.md

generate-pdf is a skill for Claude Code, Cursor from FilippoScaramuzza/agentic-reviewer. It costs 41 tokens per session (751 once invoked), scanned A, original, MIT.

A document-conversion recipe that turns a Markdown review report into a formatted PDF using Pandoc and XeLaTeX.

In plain words
What is it for?
Use it after finishing a Markdown review report when you need a PDF deliverable. Pandoc and a LaTeX engine must be installed.
Why use it?
It avoids manually styling and exporting a report. It also preserves readable fonts, links, code highlighting, and a table of contents.

Skill for Claude CodeCursor

Written for Claude Code and Cursor: disable-model-invocation in frontmatter, but also installed under .cursor/.

This is FilippoScaramuzza/agentic-reviewer's own configuration. It tells Claude Code and Cursor how to work on agentic-reviewer itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agentic-reviewer configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/FilippoScaramuzza/agentic-reviewer/main/.cursor/skills/generate-pdf/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/FilippoScaramuzza/agentic-reviewer

Made for: Claude Code, Cursor.

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 generate-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/filipposcaramuzza/agentic-reviewer/generate-pdf/github.svg)](https://agentmods.dev/skills/filipposcaramuzza/agentic-reviewer/generate-pdf)
Your own site
<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.

agentmods 80×15 button for generate-pdf

Your own site · 80×15
<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>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 751 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.00041 $0.00751
Opus 5 $0.00020 $0.00376
Sonnet 5 $0.00008 $0.00150
Haiku 4.5 $0.00004 $0.00075

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

Security

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.

.cursor/skills/generate-pdf/SKILL.md · 87 lines

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 mactex or 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

Read the full file on GitHub · 87 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. 9d ago First seen · 87 lines · 41 tokens per session scan A 7c37ae9bbfd1

Subscribe to this mod's changes

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.