Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
zubair-trabzada avatar

Geo Report Pdf

  • 452 installs
  • 9.2k repo stars
  • Updated August 4, 2026
  • zubair-trabzada/geo-seo-claude

geo-report-pdf is a Claude Code skill that converts GEO audit markdown into professionally styled client PDFs using pandoc and headless Google Chrome for developers who deliver generative-engine-optimization reports.

About

geo-report-pdf is version 2.0.0 skill from zubair-trabzada/geo-seo-claude that transforms GEO-AUDIT-REPORT.md into a client-ready PDF through a pandoc plus Chrome headless pipeline—no Python, ReportLab, or JSON preprocessing required. The output includes a cover page, color-coded score tables, severity-tagged findings, and a 90-day roadmap section suitable for stakeholder delivery. Prerequisites are pandoc (`brew install pandoc`) and Google Chrome at `/Applications/Google Chrome.app/`. Allowed tools are Read, Grep, Glob, Bash, and Write. Developers reach for geo-report-pdf after completing a GEO audit when the markdown report exists and a polished PDF export is the final deliverable for clients or marketing teams.

  • Converts GEO markdown audit reports to PDF
  • Uses pandoc and headless Chrome for rendering
  • Extracts metadata (brand, domain, GEO score, date) automatically
  • Custom HTML/CSS styling for professional presentation
  • No Python or ReportLab dependencies required

Geo Report Pdf by the numbers

  • 452 all-time installs (skills.sh)
  • Ranked #790 of 1,879 Marketing & SEO skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/zubair-trabzada/geo-seo-claude --skill geo-report-pdf

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs452
repo stars9.2k
Last updatedAugust 4, 2026
Repositoryzubair-trabzada/geo-seo-claude

How do you convert a GEO audit to PDF?

Converts GEO audit markdown reports into professionally styled PDFs using pandoc and headless Chrome, ready to deliver to clients.

Who is it for?

Developers or SEO consultants who finish GEO audits in markdown and must ship polished PDF reports without Python report tooling.

Skip if: Teams that need interactive dashboards or live audit APIs instead of a static PDF export from existing markdown.

When should I use this skill?

GEO-AUDIT-REPORT.md exists and the user asks for a professional PDF client deliverable from a GEO audit.

What you get

Styled client-ready PDF with cover page, color-coded score tables, severity-tagged findings, and 90-day roadmap.

  • styled client PDF
  • cover page with score tables
  • 90-day roadmap document

By the numbers

  • Version 2.0.0 pandoc + Chrome headless pipeline
  • Output includes a 90-day roadmap section
  • Allowed tools: Read, Grep, Glob, Bash, Write

Files

SKILL.mdMarkdownGitHub ↗

GEO PDF Report Generator (pandoc pipeline)

Prerequisites

  • pandocbrew install pandoc
  • Google Chrome — must be installed at /Applications/Google Chrome.app/

No Python dependencies. No ReportLab. No JSON data wrangling.

How It Works

1. Read GEO-AUDIT-REPORT.md in the current directory (created by /geo audit) 2. Extract cover metadata from the report (brand name, domain, GEO score, date, locations) 3. Run pandoc with the bundled CSS + HTML template to produce a self-contained GEO-REPORT.html 4. Run Chrome headless to print the HTML to GEO-REPORT.pdf

The pandoc template (~/.claude/skills/geo/templates/geo-report-template.html) injects:

  • A full-bleed dark navy cover section with the GEO score badge
  • Per-section cover metadata (date, business type, locations, platform)
  • JavaScript that runs inside Chrome before printing to color-code score cells and severity-tag finding sections

Workflow

Step 1: Check for audit report

Look for GEO-AUDIT-REPORT.md in the current directory. If absent, tell the user to run /geo audit <url> first.

Step 2: Extract cover metadata from the report

Read the top of GEO-AUDIT-REPORT.md and extract:

FieldWhere to find it
brand_nameFirst H1 title (after "GEO Audit Report:")
domainSecond bold line (e.g. **Domain:** alexamediasolutions.com)
geo_scoreLine matching ## Overall GEO Score: XX / 100
score_labelWord after the score on that same line (e.g. "Poor", "Fair", "Good")
date**Audit Date:** line
business_type**Business Type:** line
locations**Locations:** line
platform**CMS:** line

Step 3: Run pandoc

pandoc GEO-AUDIT-REPORT.md \
  --to html5 \
  --standalone \
  --embed-resources \
  --template ~/.claude/skills/geo/templates/geo-report-template.html \
  --css ~/.claude/skills/geo/templates/geo-report-style.css \
  --metadata title="GEO Audit Report — <brand_name>" \
  --metadata brand_name="<brand_name>" \
  --metadata domain="<domain>" \
  --metadata geo_score="<geo_score>" \
  --metadata score_label="<score_label>" \
  --metadata date="<date>" \
  --metadata business_type="<business_type>" \
  --metadata locations="<locations>" \
  --metadata platform="<platform>" \
  -o GEO-REPORT.html

Replace <field> placeholders with values extracted in Step 2. If a field is not found in the report, omit that --metadata flag — the template has sensible defaults.

Step 4: Run Chrome headless

"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" \
  --headless=new \
  --disable-gpu \
  --no-sandbox \
  --print-to-pdf="$(pwd)/GEO-REPORT.pdf" \
  --print-to-pdf-no-header \
  --no-pdf-header-footer \
  --virtual-time-budget=5000 \
  "file://$(pwd)/GEO-REPORT.html"

Step 5: Report completion

Tell the user:

  • GEO-REPORT.pdf was generated in the current directory
  • File size
  • Optionally: open GEO-REPORT.pdf to preview it

What the PDF Contains

  • Cover page — Dark navy gradient, brand name, domain, GEO score badge (colored by score), audit date, business type, locations, CMS platform
  • Score tables — Cells containing XX/100 are color-coded: ≥80 green, ≥65 blue, ≥50 amber, ≥35 orange, <35 red
  • Finding sectionsh3 headings containing "Critical / High / Medium / Low" get severity-colored left-border callout blocks (red / orange / yellow / green)
  • Section page breaks — Major sections (High Priority, 90-Day Roadmap, Component Score Summary, Generated Schema) break to new pages automatically
  • Code blocks — JSON schema templates render with dark theme monospace styling
  • Page footer — Brand name · GEO Audit · date + page numbers (via CSS @page)

Customizing the Report

  • Colors / typography — Edit ~/.claude/skills/geo/templates/geo-report-style.css
  • Cover layout — Edit ~/.claude/skills/geo/templates/geo-report-template.html
  • Score thresholds for color-coding — Edit the scoreColor() function in the template's <script> block
  • Which sections get page breaks — Edit the breakBefore array in the template's <script> block

Troubleshooting

ProblemFix
pandoc: command not foundbrew install pandoc
Chrome not foundCheck path: /Applications/Google Chrome.app/Contents/MacOS/Google Chrome
PDF is blank / emptyIncrease --virtual-time-budget to 8000
Cover metadata missingCheck GEO-AUDIT-REPORT.md has the standard header format
Fonts not loadingPDF is rendered offline; system fonts are used as fallback — this is expected

Related skills

How it compares

Pick geo-report-pdf for markdown-to-PDF GEO client deliverables; pick a live audit skill when the goal is running the audit itself rather than exporting results.

FAQ

What input does geo-report-pdf require?

geo-report-pdf reads GEO-AUDIT-REPORT.md produced by a GEO audit and converts it into a styled PDF using pandoc and headless Google Chrome, without Python dependencies or JSON data wrangling.

What sections appear in the geo-report-pdf output?

The geo-report-pdf output includes a cover page, color-coded score tables, severity-tagged findings, and a 90-day roadmap, formatted as a client-ready PDF deliverable.

Marketing & SEOseocontentdistribution

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.