Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

geo-report-pdfGEO report PDF 搜索

Agent Skill

geo-report-pdf 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,344

周安装

181

GitHub Stars

6,929

下载量

1,448
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:geo-report-pdf(GEO report PDF 搜索)
来源仓库:https://github.com/zubair-trabzada/geo-seo-claude
仓库路径:skills/geo-report-pdf
安装命令:
npx skills add https://github.com/zubair-trabzada/geo-seo-claude --skill geo-report-pdf
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/zubair-trabzada/geo-seo-claude --skill geo-report-pdf

简介

geo-report-pdf 用于查找、检索和筛选相关信息,支持基于关键词或任务场景定位内容。

  • 适合在需要从文档、网页或结构化数据中提炼候选信息的场景下使用。
  • 通过 npx 安装,需结合原始 README 确认具体用法和参数约定。
  • 安装命令:npx skills add https://github.com/zubair-trabzada/geo-seo-claude --skill geo-report-pdf
  • 建议提前评估是否会触发联网、命令执行或文件读写,并确认相关权限边界。

SKILL.md

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

Write the collected audit data to a temporary JSON file:

# Write audit data to temp file
cat > /tmp/geo-audit-data.json << 'EOF'
{ ... audit JSON data ... }
EOF

Step 3: Generate the PDF

Run the PDF generation script:

python3 ~/.claude/skills/geo/scripts/generate_pdf_report.py /tmp/geo-audit-data.json GEO-REPORT-[brand].pdf

The script will produce a professional PDF report with:

  • Cover Page — Brand name, URL, date, overall GEO score with visual gauge
  • Executive Summary — Key findings and top recommendations
  • Score Breakdown — Table and bar chart of all 6 scoring categories
  • AI Platform Readiness — Visual horizontal bar chart per platform with scores
  • AI Crawler Access — Color-coded table (green=allowed, red=blocked)
  • Key Findings — Severity-coded findings list (critical/high/medium/low)
  • Prioritized Action Plan — Quick wins, medium-term, and strategic initiatives
  • Appendix — Methodology, data sources, and glossary

Step 4: Return the PDF Path

After generation, tell the user where the PDF was saved and its file size.

Complete Workflow Example

When the user runs this skill, follow this exact sequence:

  1. Check for existing audit data — Look for recent GEO audit reports in the current directory:

- GEO-CLIENT-REPORT.md - GEO-AUDIT-REPORT.md - Or any GEO-*.md files from a recent audit

  1. If no audit data exists — Tell the user to run /geo-audit <url> first, then come back for the PDF.
  2. If audit data exists — Parse the markdown report to extract:

- Overall GEO score - Category scores (citability, brand authority, content/E-E-A-T, technical, schema, platform) - Platform readiness scores (Google AIO, ChatGPT, Perplexity, Gemini, Bing Copilot) - AI crawler access status - Key findings with severity levels - Quick wins, medium-term, and strategic action items - Executive summary

  1. Build the JSON — Structure all data into the JSON schema shown above.
  2. Write JSON to temp file — Save to /tmp/geo-audit-data.json
  3. Run the PDF generator: python3 ~/.claude/skills/geo/scripts/generate_pdf_report.py /tmp/geo-audit-data.json "GEO-REPORT-[brand_name].pdf"
  4. Report success — Tell the user the PDF was generated, its location, and file size.

If the User Provides a URL

If the user runs /geo-report-pdf https://example.com with a URL:

  1. First run a full audit: invoke the geo-audit skill for that URL
  2. Then collect all the audit data from the generated report files
  3. Generate the PDF as described above

Parsing Markdown Audit Data

When extracting data from existing GEO markdown reports, look for these patterns:

  • GEO Score: Look for "GEO Score: XX/100" or "Overall: XX/100" or "GEO Readiness Score: XX"
  • Category Scores: Look for score tables with columns like "Component | Score | Weight"
  • Platform Scores: Look for tables with "Google AI Overviews", "ChatGPT", "Perplexity", etc.
  • Crawler Status: Look for tables with "Allowed" or "Blocked" status for crawlers like GPTBot, ClaudeBot
  • Findings: Look for sections titled "Key Findings", "Critical Issues", "Recommendations"
  • Action Items: Look for sections titled "Quick Wins", "Action Plan", "Recommendations"

Notes

  • If ReportLab is not installed, run: pip install reportlab
  • The PDF is designed for US Letter size (8.5" x 11")
  • Color palette: Navy primary (#1a1a2e), Blue accent (#0f3460), Coral highlight (#e94560), Green success (#00b894)
  • Each page has a header line, page numbers, "Confidential" watermark, and generation date
  • Score gauges use traffic-light colors: green (80+), blue (60-79), yellow (40-59), red (below 40)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.07%
按下载量换算551

Claude

29.43%
按下载量换算426

Cursor

19%
按下载量换算275

Gemini CLI

9.73%
按下载量换算141

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills