New to Claude Skills? Learn how to install them →

zubair-trabzada on GitHub

GEO PDF Report Generator

Free

Transform GEO audits into professional PDF reports.

Get this skill

Free · Opens the source repo

What GEO PDF Report Generator does

The GEO PDF Report Generator is designed to streamline the process of creating professional PDF reports from GEO audits. Utilizing a combination of pandoc and Google Chrome in headless mode, this tool takes a markdown file, GEO-AUDIT-REPORT.md, and converts it into a well-structured PDF document that is ready for client delivery. The generated report includes a cover page, color-coded score tables, and severity-tagged findings, along with a 90-day roadmap for improvements.

To get started, users need to ensure they have pandoc and Google Chrome installed. The generator reads the necessary metadata from the markdown file, such as brand name, domain, and GEO scores, and then uses this information to populate a custom HTML template. This template is styled with CSS to ensure that the final PDF looks professional and is easy to read. The process is automated, requiring minimal user intervention, which makes it suitable for professionals who need to generate reports quickly and efficiently.

The output PDF includes detailed sections that are color-coded based on performance scores, making it easy for clients to identify areas that need attention. Additionally, the report is structured to include page breaks for major sections, ensuring clarity and organization. Users can further customize the report's appearance by editing the CSS and HTML templates, allowing for branding consistency across reports.

This skill is particularly useful for digital marketers, SEO professionals, and web developers who conduct GEO audits and need to present their findings in a polished format. By automating the report generation process, users can save time and focus on analyzing the data rather than formatting documents.

When to use it

Use this tool when you have a GEO audit report in markdown format and need to produce a polished PDF for client presentation.

When not to use it

This skill is not suitable for users who do not have access to pandoc or Google Chrome, or for those who require advanced customization beyond the provided templates.

What you can build with it

Generating Client Reports

Quickly create a professional PDF report for clients after conducting a GEO audit.

Customizing Report Styles

Edit the CSS and HTML templates to match your branding for consistent client deliverables.

Automating Audit Documentation

Automate the documentation process for GEO audits to save time and improve efficiency.

How to install GEO PDF Report Generator

View source

1. Install with the skills CLI

npx skills add zubair-trabzada/geo-seo-claude/geo-report-pdf --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by zubair-trabzada

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

Frequently asked questions about GEO PDF Report Generator

Similar skills