geo-schema

geo-schema is a skill for Claude Code, Codex from KSfak/Zubair-Trabzada-YouTube. It costs 26 tokens per session (3,541 once invoked), scanned A, a copy of geo-schema, MIT.

A tool for checking and creating Schema.org structured data, which is machine-readable information that describes a webpage’s entities and content. It works with formats such as JSON-LD, Microdata, and RDFa.

In plain words
What is it for?
Finding structured data in HTML, validating it against Schema.org, identifying useful missing schemas, and generating JSON-LD markup for a page.
Why use it?
It helps search engines and AI systems understand what a page represents and how its information is connected. It can reveal invalid or missing markup that makes this information harder to interpret.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Finding structured data in HTML, validating it against Schema.org, identifying useful missing schemas, and generating JSON-LD markup for a page.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ksfak/zubair-trabzada-youtube/geo-schema
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-schema
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-schema

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/ksfak/zubair-trabzada-youtube/geo-schema"><img src="https://agentmods.dev/badge/skills/ksfak/zubair-trabzada-youtube/geo-schema.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 26 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,541 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 86% 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.00026 $0.03541
Opus 5 $0.00013 $0.01770
Sonnet 5 $0.00005 $0.00708
Haiku 4.5 $0.00003 $0.00354

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

Security

Grade A, and why

geo-schema scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

1. Fetch the target page HTML using curl or WebFetch
Origin

This is a copy

86% identical to geo-schema — 9 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-schema/SKILL.md · 364 lines

How it starts

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

GEO Schema & Structured Data

Purpose

Structured data is the primary machine-readable signal that tells AI systems what an entity IS, what it does, and how it connects to other entities. While schema markup has traditionally been about earning Google rich results, its role in GEO is fundamentally different: structured data is how AI models understand and trust your entity. A complete entity graph in structured data dramatically increases citation probability across all AI search platforms.

How to Use This Skill

  1. Fetch the target page HTML using curl or WebFetch
  2. Detect all existing structured data (JSON-LD, Microdata, RDFa)
  3. Validate detected schemas against Schema.org specifications
  4. Identify missing recommended schemas based on business type
  5. Generate ready-to-use JSON-LD code blocks
  6. Output GEO-SCHEMA-REPORT.md

Step 1: Detection

Scan for JSON-LD

Look for <script type="application/ld+json"> blocks in the HTML. Parse each block as JSON. A page may contain multiple JSON-LD blocks — collect all of them.

Scan for Microdata

Look for elements with itemscope, itemtype, and itemprop attributes. Map the hierarchy of nested items. Note: Microdata is harder for AI crawlers to parse than JSON-LD. Flag a recommendation to migrate to JSON-LD if Microdata is the only format found.

Scan for RDFa

Look for elements with typeof, property, and vocab attributes. Similar to Microdata — recommend migration to JSON-LD.

Priority Order

JSON-LD is the strongly recommended format for GEO. Google, Bing, and AI platforms all process JSON-LD most reliably. If the site uses Microdata or RDFa exclusively, flag this as a high-priority migration.


Step 2: Validation

For each detected schema block, validate:

  1. Valid JSON: Is the JSON-LD syntactically valid? Check for trailing commas, unquoted keys, malformed strings.
  2. Valid @type: Does the @type match a recognized Schema.org type? Check against https://schema.org/docs/full.html.
  3. Required Properties: Does the schema include all required properties for its type? (See per-type requirements below.)
  4. Recommended Properties: Does the schema include recommended properties that increase AI discoverability?
  5. sameAs Links: Does the schema include sameAs properties linking to other platform presences?
  6. URL Validity: Do all URLs in the schema resolve (not 404)?
  7. Nesting: Is the schema properly nested (e.g., author inside Article, address inside Organization)?
  8. Rendering Method: Is the JSON-LD in the server-rendered HTML or injected via JavaScript? Per Google's December 2025 guidance, JavaScript-injected structured data may face delayed processing. Flag any schema that requires JS execution.

Read the full file on GitHub · 364 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 · 364 lines · 26 tokens per session scan A 7b453d454381

Subscribe to this mod's changes

geo-schema is a skill published in the GitHub repository KSfak/Zubair-Trabzada-YouTube (22 stars, last pushed 6mo ago), licensed MIT. It adds 26 tokens to every session and 3,541 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 86% identical to geo-schema, differing in 9 lines, and is treated as a copy.

Related

Other skills, from other repositories

geo-schema

Schema.org structured data audit and generation optimized for AI discoverability — detect, validate, and generate JSON-LD markup.

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

geo-schema

Schema.org structured data audit and generation optimized for AI discoverability — detect, validate, and generate JSON-LD markup.

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

geo-schema

Schema.org structured data audit and generation optimized for AI discoverability — detect, validate, and generate JSON-LD markup.

techhorizonlabs/thl-open · 26 tokens

schema-markup

Add, fix, or optimize schema markup and structured data. Use when the user mentions schema markup, structured data, JSON-LD, rich snippets, schema.org, FAQ schema, product schema, review schema, or breadcrumb schema.

wpank/ai · 50 tokens

ultimate-seo-geo-skill

Use this skill when running SEO audits, optimizing for AI search engines (AI Overviews, ChatGPT, Perplexity), generating schema markup, diagnosing traffic drops, fixing Core Web Vitals, managing site migrations, or building keyword strategies. Runs scored full-site audits (0-100 Health Score) across 21 modules…

curiositech/some_claude_skills · 118 tokens

seo-audit

Audit and optimize public-facing web pages for search engines and AI search. Covers technical SEO audits (crawlability, Core Web Vitals, structured data), local SEO (LocalBusiness schema, geo-metadata), on-page signals (title tags, meta descriptions, heading hierarchy), and AI search readiness (GEO, llms.txt…

afaraha8403/balakit · 121 tokens