geo-gap-fixer

geo-gap-fixer is a skill for Claude Code from Varnan-Tech/opendirectory. It costs 23 tokens per session (1,022 once invoked), scanned A, original, MIT.

A point-in-time audit of how often language models recommend your brand compared with competitors. GEO, or generative engine optimization, means improving the content that AI systems use when answering recommendations.

In plain words
What is it for?
Use it to measure AI-generated brand visibility across buyer-focused prompts and turn gaps into content tasks. It requires a configuration file and access to at least two supported AI services.
Why use it?
It shows which questions your brand is losing and helps explain why competitors appear instead. The result is a concrete content action plan rather than a general search-engine audit.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument.

Part of the opendirectory plugin — 58 skills shipped together

Good fit Use it to measure AI-generated brand visibility across buyer-focused prompts and turn gaps into content tasks. It requires a configuration file and access to at least two supported AI services.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/varnan-tech/opendirectory/geo-gap-fixer
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 Varnan-Tech/opendirectory --skill geo-gap-fixer
Clone the repo
git clone --depth 1 https://github.com/Varnan-Tech/opendirectory

Made for: Claude Code.

Or install opendirectory, the plugin that ships this one along with the rest of its 58 skills.

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-gap-fixer

README.md
[![agentmods](https://agentmods.dev/badge/skills/varnan-tech/opendirectory/geo-gap-fixer/github.svg)](https://agentmods.dev/skills/varnan-tech/opendirectory/geo-gap-fixer)
Your own site
<a href="https://agentmods.dev/skills/varnan-tech/opendirectory/geo-gap-fixer"><img src="https://agentmods.dev/badge/skills/varnan-tech/opendirectory/geo-gap-fixer/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-gap-fixer

Your own site · 80×15
<a href="https://agentmods.dev/skills/varnan-tech/opendirectory/geo-gap-fixer"><img src="https://agentmods.dev/badge/skills/varnan-tech/opendirectory/geo-gap-fixer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,022 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found 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.00023 $0.01022
Opus 5 $0.00012 $0.00511
Sonnet 5 $0.00005 $0.00204
Haiku 4.5 $0.00002 $0.00102

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

Security

Grade A, and why

geo-gap-fixer 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 9d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (scripts/analyze_results.py, scripts/build_report.py, scripts/probe_llms.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/geo-gap-fixer/SKILL.md · 92 lines

How it starts

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

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:

  1. 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).
  2. Dependencies: pip install openai anthropic google-genai
  3. 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.

  1. 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.
  2. python scripts/analyze_results.py

    • Analyzes raw responses for brand mentions, ranking, sentiment, and cited domains.
    • Saves structured analysis to data/analysis.json.
  3. 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.

Read the full file on GitHub · 92 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. 9d ago First seen · 92 lines · 23 tokens per session scan A 3a40c498e339

Subscribe to this mod's changes

geo-gap-fixer is a skill published in the GitHub repository Varnan-Tech/opendirectory (635 stars, last pushed 23d ago), licensed MIT. It adds 23 tokens to every session and 1,022 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

content-style

Writing Reddit-native content that sounds human, avoids AI tells, and delivers value through structure and specificity. Applies to workshop posts, definitive model guides, research megathreads, and community FYI/update posts.

AtlasOmnia/donna-starter · 37 tokens

coding-worktree-recovery

Use this skill when coding-agent work is interrupted, an agent exits without a clean commit, multiple controllers target the same checkout, or the checkout produces inconsistent file/Git behavior.

AtlasOmnia/donna-starter · 56 tokens

macos-storage-management

Safely reclaim local Mac storage without mistaking cloud placeholders for resident data, losing File Provider content, or flattening metadata onto an incompatible external filesystem.

AtlasOmnia/donna-starter · 22 tokens

hermes-mnemosyne

Mnemosyne is Hermes' primary local-first memory engine — SQLite with vector + FTS5 hybrid search, 19+ tools, auto-consolidation, and a standalone CLI. It's a pip-installed plugin (not a built-in toolset) discovered via $HERMESHOME/plugins/mnemosyne/.

AtlasOmnia/donna-starter · 30 tokens

skill-auditor

Audit any Hermes skill file and assign a quality grade based on clarity, completeness, tool guidance, and shareability. Returns specific fix suggestions ranked by impact.

AtlasOmnia/donna-starter · 64 tokens

marketplace-purchase-vetting

Use this when the user asks whether a local listing is a scam, "too good to be true," worth looking at, or a good deal. Also use this when he asks you to find options — search/discover candidates, then vet the best ones. The goal is not a generic buying guide; it is a practical risk read with clear next steps.

AtlasOmnia/donna-starter · 72 tokens