hainrixz/claude-seo-ai

seo-vertical-detect

Classify a website as ecommerce, local-business, blog-publisher, saas, docs, or generic (multiple may apply), and report detected locales, from the persisted PageSnapshot plus the platform detector's vertical hints.

First seen Jun 2, 2026

Installation

$ npx skills add hainrixz/claude-seo-ai --skill seo-vertical-detect

Summary

  • Classify a website as ecommerce, local-business, blog-publisher, saas, docs, or generic (multiple may apply), and report detected locales, from the persisted PageSnapshot plus the platform detector's vertical hints.
  • Used by seo-orchestrator to decide which conditional modules to run and how to reweight the scores.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from hainrixz/claude-seo-ai · top by installs.

npx skills add hainrixz/claude-seo-ai

Browse all from hainrixz/claude-seo-ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 57
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Grep, Glob

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,392 B
  • docs SUMMARY.md 342 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 143 installs

SKILL.md

seo-vertical-detect

Given the PageSnapshot, classify the site so the orchestrator can route conditional modules. Read references/routing.md for the signal table.

Inputs

Read-only over persisted data — no fetching: the homepage parsed (jsonld[], anchors[], metas[], hreflang[], <html lang>, textsample) from <rundir>/pages/<slug>.json, <rundir>/crawl.json (route patterns, templates), <rundir>/site/discovery.json (llms.txt presence), and the verticalhints[] emitted by detect-platform.mjs in <rundir>/profile.json (e.g. WooCommerce/Shopify → ecommerce; a docs generator → docs). Hints are signals, not verdicts — cite them in signals like any other evidence.

Method

Score each vertical from observable signals (not guesses):

  • ecommerceProduct/Offer JSON-LD, cart/checkout/add-to-cart routes or buttons, price + currency elements, og:type=product.
  • local-businessLocalBusiness JSON-LD, NAP block (name/address/phone), maps embed, opening hours, store-locator.
  • blog-publisherArticle/BlogPosting JSON-LD, author bylines/author pages, RSS/Atom <link>, dated post archives.
  • saas — pricing/signup/login routes, SoftwareApplication schema, feature/integration/docs pages.
  • docs — docs/reference routes, sidebar/version nav, dense code blocks, present llms.txt.
  • generic — none dominates.

A site can match several; return all that clear the threshold, ranked, plus a primary.

Locales: detect hreflang tags, <html lang>, and locale-prefixed routes (/es/, /fr/). If >1 locale, flag multilingual so M20 (hreflang) activates.

Output

{ "primary": "ecommerce", "also": ["blog-publisher"], "multilingual": true, "locales": ["en","es"],
  "signals": { "ecommerce": ["Product JSON-LD on /p/...", "cart route /cart"], "...": [] } }

Base every classification on a cited signal in signals — never label a vertical without evidence.