mcpbeat Sign in

Geo Gap Fixer Agent Skill

Audit how often LLMs recommend your brand vs competitors and generate a GEO action plan.

19k tokens
context cost
the whole folder, loaded on every use
12
files
ships runnable scripts
0
copies elsewhere
how many repositories repackaged it
569
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/Varnan-Tech/opendirectory --skill geo-gap-fixer

The instruction itself

6 sections, as written by the author

GEO Gap Fixer

> Agent skill that audits LLM brand visibility and converts gaps into a

> concrete GEO content action plan.


When to Use

Use this skill when a user wants to audit their Generative Engine Optimization (GEO) share-of-voice to know which LLM prompts their brand is losing, understand why competitors are recommended instead, and get a specific content fix plan.

Do NOT use this skill for: general SEO audits, paid ad optimization, or continuous social media monitoring. This is a point-in-time LLM visibility audit.


Step 1: Inputs

To run the audit, the user must provide API keys and a configuration file. Ensure the following are set up:

  • API Keys: At least 2 of 4 keys must be set in the environment or .env file (OPENAI_API_KEY, ANTHROPIC_API_KEY, GOOGLE_API_KEY, PERPLEXITY_API_KEY).
  • Dependencies: pip install openai anthropic google-genai
  • Config File: config.json (copied from config.example.json) must contain:
  • brand_name (string, required)
  • competitors (list of strings, required, 1-10 entries)
  • category (string, required)
  • buyer_intent_prompts (list of strings, optional. If empty, 20 prompts are auto-generated)
  • target_llms (list of strings, optional)
  • website_url (string, optional)

Step 2: Execution Pipeline

Run the following scripts in order. Stop and ask for clarification if any script fails.

  • python scripts/probe_llms.py (Optional: append --dry-run to test config without API calls)
  • Sends buyer-intent prompts to the configured LLM APIs.
  • Saves responses to data/raw_responses.json.
  • python scripts/analyze_results.py
  • Analyzes raw responses for brand mentions, ranking, sentiment, and cited domains.
  • Saves structured analysis to data/analysis.json.
  • python scripts/build_report.py
  • Assembles the final 5-section GEO audit report.
  • Saves to report/geo_audit_report.md and report/geo_audit_report.json.

Step 3: Outputs & Interpretation

The primary output is report/geo_audit_report.md. Present its findings to the user.

Key Sections to Interpret:

  • Share-of-Voice Table: A mention rate below 30% is critical. Mention rate is the % of prompts where the brand is recommended.
  • Prompt-Level Loss Log: Which exact prompts the brand lost and to whom.
  • Competitor Language Patterns: The specific adjectives LLMs use for competitors.
  • Citation Gap List: Domains LLMs cite that the brand is missing from.
  • GEO Action Plan: Prioritized fixes (🔴 Critical, 🟡 High Priority, 🟢 Growth Plays).

Direct the user to the GEO Action Plan first, as it contains the concrete steps to fix the gaps identified in the audit.


Step 4: Error Handling

If you encounter issues while executing the pipeline, follow these rules:

| Condition | Agent Action |

|-----------|--------------|

| Missing config.json | Tell the user to copy config.example.json and fill it out. |

| Invalid JSON in config | Notify the user of the parse error location and ask them to fix it. |

| Missing required fields | List the exact missing fields (brand_name, competitors, category). |

| No API keys set | Ask the user to export at least 2 of the 4 supported API keys. |

| 1 API key only | Warn the user that results are less reliable, but proceed with the run. |

| Transient API failure | The script auto-retries. If it fails completely, it skips the provider. |

| Persistent API failure | The script skips the provider gracefully. Continue the pipeline. |

| Zero responses | The script exits non-zero. Notify the user to check API keys or config. |

| Missing upstream data file | Re-run the preceding script in the pipeline (e.g., probe before analyze). |

Limitations to keep in mind:

  • This is a point-in-time audit, not a background monitor.
  • Sentiment analysis uses keyword proximity, not deep NLP.
  • API costs apply for each run (typically ~$0.50–$2.00).

Other skills for the same job

different authors, same section of the catalogue
Internal Comms
by anthropics
vendor ×13

A set of resources to help me write all kinds of internal communications, using the formats that my company likes to use. Claude should use this skill whenever asked to write some sort of internal communications (status reports, leadership updates, 3P updates, company newsletters, FAQs, incident reports, project updates, etc.).

6k tokens
Competitive Ads Extractor
by frostant
×10

Extracts and analyzes competitors' ads from ad libraries (Facebook, LinkedIn, etc.) to understand what messaging, problems, and creative approaches are working. Helps inspire and improve your own ad campaigns.

2k tokens
Lead Research Assistant
by frostant
×8

Identifies high-quality leads for your product or service by analyzing your business, searching for target companies, and providing actionable contact strategies. Perfect for sales, business development, and marketing professionals.

2k tokens
Developer Growth Analysis
by frostant
×6

Analyzes your recent Claude Code chat history to identify coding patterns, development gaps, and areas for improvement, curates relevant learning resources from HackerNews, and automatically sends a personalized growth report to your Slack DMs.

4k tokens
App Store Optimization
by alirezarezvani
×3

Complete App Store Optimization (ASO) toolkit for researching, optimizing, and tracking mobile app performance on Apple App Store and Google Play Store

55k tokens scripts
Deeptools
by christophacham
×3

NGS analysis toolkit. BAM to bigWig conversion, QC (correlation, PCA, fingerprints), heatmaps/profiles (TSS, peaks), for ChIP-seq, RNA-seq, ATAC-seq visualization.

21k tokens scripts
Pymatgen
by christophacham
×3

Materials science toolkit. Crystal structures (CIF, POSCAR), phase diagrams, band structure, DOS, Materials Project integration, format conversion, for computational materials science.

26k tokens scripts
Enhance Prompt
by google-labs-code
vendor ×2

Transforms vague UI ideas into polished, Stitch-optimized prompts. Enhances specificity, adds UI/UX keywords, injects design system context, and structures output for better generation results.

3k tokens

How to use it

Copy the folder

Take varnan-tech/geo-gap-fixer from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip. Without those the skill loads but fails at the first command.