visibly-seo-pdf-build

visibly-seo-pdf-build is a skill for Claude Code from AntonioBlago/claude-code-seo-starter. It costs 60 tokens per session (878 once invoked), scanned A, original, MIT.

A Python-based workflow for creating client-ready PDF documents that follow a company's colours, fonts, and layout rules. It supports items such as covers, headers, tables, and results boxes.

In plain words
What is it for?
Use it to turn SEO analyses, offers, or similar business documents into branded PDF files for clients.
Why use it?
It avoids rebuilding the document layout and brand styling from scratch each time. It also helps keep exported reports visually consistent.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Part of the seo-starter plugin — 4 skills, 4 commands, 1 hook, 2 MCP servers shipped together

Good fit Use it to turn SEO analyses, offers, or similar business documents into branded PDF files for clients.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build
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 AntonioBlago/claude-code-seo-starter --skill visibly-seo-pdf-build
Clone the repo
git clone --depth 1 https://github.com/AntonioBlago/claude-code-seo-starter

Made for: Claude Code.

Or install seo-starter, the plugin that ships this one along with the rest of its 4 skills, 4 commands, 1 hook, 2 MCP servers.

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 visibly-seo-pdf-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build/github.svg)](https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build)
Your own site
<a href="https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build"><img src="https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build/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 visibly-seo-pdf-build

Your own site · 80×15
<a href="https://agentmods.dev/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build"><img src="https://agentmods.dev/badge/skills/antonioblago/claude-code-seo-starter/visibly-seo-pdf-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 878 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.00060 $0.00878
Opus 5 $0.00030 $0.00439
Sonnet 5 $0.00012 $0.00176
Haiku 4.5 $0.00006 $0.00088

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

Security

Grade A, and why

visibly-seo-pdf-build 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 11d 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.

.claude/skills/visibly-seo-pdf-build/SKILL.md · 78 lines

How it starts

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

CI-Compliant PDF Build

Render a brand-compliant, client-ready PDF with fpdf2 (or a PDF MCP if one is connected — prefer it when available).

Step 1 — Start from the Python template

Import the reusable CIPDF class from claude_tools/ci_pdf.py — it already implements cover, header/footer, section bars, body, bullets, wrapping tables and KPI/ROI boxes, and pulls all brand colours/fonts from templates/ci/brand.py (one source of truth). Don't reinvent the layout or re-declare the CI.

from claude_tools.ci_pdf import CIPDF
pdf = CIPDF()
pdf.cover("SEO Strategy & Offer", "Example GmbH", "2026-06-13")
pdf.add_page(); pdf.section("1. Executive Summary"); pdf.body("…")
pdf.kpi_box("ROI (realistic)", "233 %", "good")
pdf.output("clients/<domain>/<date>_Offer/offer.pdf")

Run via the venv: .\claude_tools_venv\Scripts\python.exe your_build_script.py (setup once with .\claude_tools\setup.ps1). templates/pdf_example.py remains a standalone, zero-config reference if you want a copy to hack on without the package.

Step 2 — Register fonts correctly

CIPDF registers the brand fonts for you (always with uni=True, so ä ö ü ß é ñ render) if templates/ci/brand.py points FONTS at real .ttf files that exist — otherwise it falls back to Helvetica so the build never crashes. So the one-time job is: drop the brand TTFs in fonts/ and set their paths in brand.py. Headings and body should use distinct brand fonts.

If you build a PDF outside CIPDF, register fonts the same way — always uni=True:

pdf.add_font("Heading", "",  f"{FONT_DIR}/Heading-Regular.ttf", uni=True)
pdf.add_font("Heading", "B", f"{FONT_DIR}/Heading-Bold.ttf",    uni=True)
pdf.add_font("Body",    "",  f"{FONT_DIR}/Body-Regular.ttf",    uni=True)

Step 3 — Apply the CI

  • Cover: dark background, accent bar, white title, brand + client + date + contact.
  • Header/footer: dark bar + accent line; brand left, contact centred.
  • Section titles: accent bar + bold heading font.
  • Tables: accent header row (white text), alternating white / light-gray body rows.
  • KPI / ROI boxes: colour-coded (good / warning / critical) — avoid pure red-green only; add a second cue so it survives grayscale and colour-blind readers.

Read the full file on GitHub · 78 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. 11d ago First seen · 78 lines · 60 tokens per session scan A 52d995e6ee1d

Subscribe to this mod's changes

visibly-seo-pdf-build is a skill published in the GitHub repository AntonioBlago/claude-code-seo-starter (3 stars, last pushed 6d ago), licensed MIT. It adds 60 tokens to every session and 878 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

geo-proposal

Auto-generate a professional, client-ready GEO service proposal from audit data. Creates a full proposal in markdown and PDF including executive summary, findings, recommended service packages (Basic/Standard/Premium), pricing, timeline, and terms. Use when user says "proposal", "proposta", "offerta", "preventivo"…

zubair-trabzada/geo-seo-claude · 83 tokens

geo-report-pdf

Generate a professional PDF report from a GEO audit using pandoc + Chrome headless. Converts GEO-AUDIT-REPORT.md into a styled, client-ready PDF with a cover page, color-coded score tables, severity-tagged findings, and a 90-day roadmap.

zubair-trabzada/geo-seo-claude · 59 tokens

skill-doc-delivery

Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.

nyldn/claude-octopus · 29 tokens

add-pdf-report

Internal implementation skill invoked by /add-native for app-generated PDF report workflows using expo-print and, when present, expo-sharing.

microsoft/power-platform-skills · 30 tokens

add-pdf-viewer

Internal implementation skill invoked by /add-native for native PDF control workflows. Handles HTTPS and file URI PDF viewing with @microsoft/power-apps-native-pdf-viewer 0.2.9+.

microsoft/power-platform-skills · 47 tokens

pdf-report

Generate a branded, audience-structured marketing report — executive summary, campaign report, channel deep-dive, competitor report, or monthly/quarterly review — assembled via pdf-generator.py with brand colors, logo, and fonts, and previewed for adjustments before finalizing. Pulls data from campaign-tracker.py…

indranilbanerjee/digital-marketing-pro · 147 tokens