geo-report-pdf

geo-report-pdf is a skill for Claude Code, Codex from KSfak/Zubair-Trabzada-YouTube. It costs 46 tokens per session (1,574 once invoked), scanned A, a copy of geo-report-pdf, MIT.

A tool that turns GEO audit data into a formatted PDF report. GEO, or generative-engine optimization, concerns how visible and understandable a website is in AI-powered search.

In plain words
What is it for?
Use it after a full GEO audit to create a PDF containing score gauges, charts, color-coded tables, platform-readiness views, and a prioritized action plan.
Why use it?
It saves you from manually turning audit scores, findings, charts, and recommendations into a document suitable for a client or stakeholder.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it after a full GEO audit to create a PDF containing score gauges, charts, color-coded tables, platform-readiness views, and a prioritized action plan.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ksfak/zubair-trabzada-youtube/geo-report-pdf
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 KSfak/Zubair-Trabzada-YouTube --skill geo-report-pdf
Clone the repo
git clone --depth 1 https://github.com/KSfak/Zubair-Trabzada-YouTube

Made for: Claude Code, Codex.

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 geo-report-pdf

README.md
[![agentmods](https://agentmods.dev/badge/skills/ksfak/zubair-trabzada-youtube/geo-report-pdf/github.svg)](https://agentmods.dev/skills/ksfak/zubair-trabzada-youtube/geo-report-pdf)
Your own site
<a href="https://agentmods.dev/skills/ksfak/zubair-trabzada-youtube/geo-report-pdf"><img src="https://agentmods.dev/badge/skills/ksfak/zubair-trabzada-youtube/geo-report-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 geo-report-pdf

Your own site · 80×15
<a href="https://agentmods.dev/skills/ksfak/zubair-trabzada-youtube/geo-report-pdf"><img src="https://agentmods.dev/badge/skills/ksfak/zubair-trabzada-youtube/geo-report-pdf.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,574 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 94% copy Near-identical to another mod 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.00046 $0.01574
Opus 5 $0.00023 $0.00787
Sonnet 5 $0.00009 $0.00315
Haiku 4.5 $0.00005 $0.00157

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

Security

Grade A, and why

geo-report-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 12d 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.

Origin

This is a copy

94% identical to geo-report-pdf — 7 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

skills/geo-report-pdf/SKILL.md · 164 lines

How it starts

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

GEO PDF Report Generator

Purpose

This skill generates a professional, visually polished PDF report from GEO audit data. The PDF includes score gauges, bar charts, platform readiness visualizations, color-coded tables, and a prioritized action plan — ready to deliver directly to clients.

Prerequisites

  • ReportLab must be installed: pip install reportlab
  • The PDF generation script is located at: ~/.claude/skills/geo/scripts/generate_pdf_report.py
  • Run a full GEO audit first (using /geo-audit) to have data to include in the report

How to Generate a PDF Report

Step 1: Collect Audit Data

After running a full /geo-audit, collect all scores, findings, and recommendations into a JSON structure. The JSON data must follow this schema:

{
    "url": "https://example.com",
    "brand_name": "Example Company",
    "date": "2026-02-18",
    "geo_score": 65,
    "scores": {
        "ai_citability": 62,
        "brand_authority": 78,
        "content_eeat": 74,
        "technical": 72,
        "schema": 45,
        "platform_optimization": 59
    },
    "platforms": {
        "Google AI Overviews": 68,
        "ChatGPT": 62,
        "Perplexity": 55,
        "Gemini": 60,
        "Bing Copilot": 50
    },
    "executive_summary": "A 4-6 sentence summary of the audit findings...",
    "findings": [
        {
            "severity": "critical",
            "title": "Finding Title",
            "description": "Description of the finding and its impact."
        }
    ],
    "quick_wins": [
        "Action item 1",
        "Action item 2"
    ],
    "medium_term": [
        "Action item 1",
        "Action item 2"
    ],
    "strategic": [
        "Action item 1",
        "Action item 2"
    ],
    "crawler_access": {
        "GPTBot": {"platform": "ChatGPT", "status": "Allowed", "recommendation": "Keep allowed"},
        "ClaudeBot": {"platform": "Claude", "status": "Blocked", "recommendation": "Unblock for visibility"}
    }
}

Step 2: Write JSON Data to a Temp File

Read the full file on GitHub · 164 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. 12d ago First seen · 164 lines · 46 tokens per session scan A a6f2bfcdc7e1

Subscribe to this mod's changes

geo-report-pdf is a skill published in the GitHub repository KSfak/Zubair-Trabzada-YouTube (22 stars, last pushed 6mo ago), licensed MIT. It adds 46 tokens to every session and 1,574 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 94% identical to geo-report-pdf, differing in 7 lines, and is treated as a copy.

Related

Other skills, from other repositories

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

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.

asale-ai/seo-geo-skill · 59 tokens

geo-report-pdf

Generate a professional PDF report from GEO audit data using ReportLab. Creates a polished, client-ready PDF with score gauges, bar charts, platform readiness visualizations, color-coded tables, and prioritized action plans.

techhorizonlabs/thl-open · 46 tokens

realestate-report-pdf

Professional PDF Property Report Generator — compiles all PROPERTY-.md analysis files into a polished, client-ready PDF with score gauges, comparison tables, financial projections, and investment recommendations.

zubair-trabzada/ai-realestate-claude · 41 tokens

geo-report

Generate a professional, client-facing GEO report combining all audit results into a single deliverable with scores, findings, and prioritized actions.

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

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