Help us improve
Share bugs, ideas, or general feedback.
From seo-skills
Detects existing JSON-LD structured data on a page, validates against Google rich-result requirements, and generates missing schema markup (Article, Product, LocalBusiness, FAQPage, BreadcrumbList) as paste-ready script blocks.
npx claudepluginhub seranking/seo-skills --plugin seo-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/seo-skills:seo-schemaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
> Example output: [examples/seo-schema-budgetbytes-slow-cooker-chicken-noodle-soup-20260514/SCHEMA.md](../../examples/seo-schema-budgetbytes-slow-cooker-chicken-noodle-soup-20260514/SCHEMA.md)
Detects, validates, and generates Schema.org structured data (JSON-LD preferred) in HTML using Python scripts for fetching/parsing and ready templates for all schema types.
Generates and validates JSON-LD schema.org markup for rich search results, covering types like FAQ, product, review, breadcrumb, and more. Helps pages earn enhanced Google results.
Detects, validates, and generates Schema.org structured data (JSON-LD). Activates on /seo-schema or when users mention schema, structured data, rich results, JSON-LD, or markup.
Share bugs, ideas, or general feedback.
Example output: examples/seo-schema-budgetbytes-slow-cooker-chicken-noodle-soup-20260514/SCHEMA.md
Detect, validate, and generate Schema.org JSON-LD for a page. Output is paste-ready <script> blocks the user can drop into their CMS or page template, plus a validation report on what's currently present and what's broken.
mcp__firecrawl-mcp__firecrawl_scrape (raw HTML access). WebFetch returns markdown only — every <script type="application/ld+json"> block is stripped before the skill ever sees it. Without Firecrawl, the skill can still generate new schema from intent detection (steps 4–6) but cannot detect or validate what's already on the page (steps 2–3, 7).Fetch HTML mcp__firecrawl-mcp__firecrawl_scrape (preferred) or degrade
--no-firecrawl to force the degraded path (generate-only mode) for credit conservation.waitFor: 2000 (or a CSS selector for the main content) so the JS-rendered DOM is captured. Use the response's html for JSON-LD parsing in step 2 and metadata for canonical/robots cross-reference.SCHEMA.md: Existing-schema detection: skipped — Firecrawl required (WebFetch returns markdown only). Install via extensions/firecrawl/install.sh.Detect existing schema (requires Firecrawl HTML from step 1)
html: extract every <script type="application/ld+json"> block.@type.itemscope/itemprop) and RDFa (typeof/property) — flag as legacy and recommend migration to JSON-LD (Google's stated preference).Existing-schema detection skipped in 01-detected.md.Validate against Google's spec
references/google-rich-results.md.@type, check required and recommended properties.@context, dates not in ISO 8601, prices as numbers instead of strings, availability as plain text instead of schema.org URL, telephone not in international format.Detect page intent
/blog/, /products/, /contact/, /how-to/, /faq/).<title> and <h1> tone.Generate missing JSON-LD
templates/:
article.json — for editorial/blog contentproduct.json — for product/SKU pageslocal-business.json — for brick-and-mortar landing pagesfaq-page.json — for explicit Q&A blocks (gov/health allowlist only — see references/google-rich-results.md)breadcrumb-list.json — for any page with breadcrumb navigation{REPLACE: ...} so the user knows to complete it.HowTo — Google retired HowTo rich results in September 2023 (mobile + desktop). The schema can still ship for semantic clarity, but expect zero rich-result uplift; flag this in the recommendation rationale rather than treating HowTo as a live option.Validate generated JSON-LD
{REPLACE: ...}.Optional: benchmark against top SERP results DATA_getSerpResults + mcp__firecrawl-mcp__firecrawl_scrape
<title> or user input).html and list detected @types. This produces real schema data, not inferences from markdown.Competitor benchmark skipped — Firecrawl required to read JSON-LD from competitor pages. into 04-competitor-benchmark.md.Synthesise SCHEMA.md
<script> blocks ready to paste.Create a folder seo-schema-{target-slug}-{YYYYMMDD}/ with:
seo-schema-{target-slug}-{YYYYMMDD}/
├── 01-detected.md (existing schema, validation results)
├── 02-recommended.md (which types this page should add and why)
├── 03-generated/
│ ├── article.jsonld
│ ├── faq-page.jsonld
│ └── ... (per generated type)
├── 04-competitor-benchmark.md (only if step 7 ran)
└── SCHEMA.md (deliverable: paste-ready blocks + install instructions)
SCHEMA.md follows this shape:
# Schema Markup: {URL}
> Snapshot dated {YYYY-MM-DD}.
## Currently present
- `Article` — valid ✓
- `BreadcrumbList` — invalid ✗ (missing `position` on item 2)
- ...
## Recommended additions
- `FAQPage` — page has 6 visible Q&A blocks but no FAQ schema. Adding this is eligible for FAQ rich results (subject to Google's 2024+ tightening — see references/google-rich-results.md).
- `HowTo` — ...
## Paste these into the `<head>` of the page
### FAQPage
\`\`\`html
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [...]
}
</script>
\`\`\`
### ... (per generated block)
## Validation pass
- All generated blocks parse cleanly ✓
- All required fields filled ({n} {REPLACE: ...} placeholders remain — see below)
- {REPLACE: ...} placeholders to fill manually:
- article.jsonld → `image` (need a hero image URL ≥ 1200×800)
- ...
## Install
1. Copy each `<script>` block above.
2. Paste into the `<head>` of the relevant page (or the global `<head>` template, gated by page type).
3. Test with [Google's Rich Results Test](https://search.google.com/test/rich-results).
4. Submit the URL to GSC for re-indexing if changes are critical.
<head> or top of <body>. Don't bury it.references/google-rich-results.md is dated. If it's >6 months old when you run this skill, flag staleness in the output and recommend the user verify against current docs.image is required. If the page has no obvious hero image, leave the {REPLACE: hero image URL} placeholder rather than guessing.DATA_getSerpResults. Firecrawl costs are separate: 1 credit for the target URL, +10 credits when step 7 runs.seo-firecrawl on the URL and grep META.md for the expected @types.