Help us improve
Share bugs, ideas, or general feedback.
From claude-rank
Detects, validates, generates, and injects JSON-LD schema into HTML files. Ensures structured data compliance with Google's requirements for SEO and rich results.
npx claudepluginhub houseofmvps/claude-rank --plugin claude-rankHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-rank:rank-schemaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Scan all HTML files for existing JSON-LD:
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.
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.
Detects, validates, and generates Schema.org structured data (JSON-LD). Checks for errors, deprecated types, and Google rich result eligibility.
Share bugs, ideas, or general feedback.
Scan all HTML files for existing JSON-LD:
node ${CLAUDE_PLUGIN_ROOT}/tools/schema-engine.mjs detect <dir>
Report: which schema types found, which files contain them.
For each detected schema, validate against Google's requirements. Report: missing required fields, deprecated types, invalid values.
Based on project type detection:
Flag missing recommended types.
For each missing schema:
node ${CLAUDE_PLUGIN_ROOT}/tools/schema-engine.mjs generate <type> --name="..." --url="..."
Inject into HTML: add script tag before closing head using Edit tool.
Re-run detect to confirm all schema is present and valid.