- Add new 00-claude-code-setting skill for token usage optimization - Includes audit scripts for MCP servers, CLAUDE.md, and extensions - Auto-fix capability with backup for serverInstructions and frontmatter - Add YAML frontmatter to 17 command files - Target: keep baseline under 30% of 200K context limit Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
---
|
|
description: Seo Schema Validator command
|
|
---
|
|
|
|
# SEO Schema Validator
|
|
|
|
JSON-LD structured data validation and analysis.
|
|
|
|
## Triggers
|
|
- "validate schema", "check structured data", "JSON-LD audit"
|
|
|
|
## Capabilities
|
|
|
|
1. **Schema Extraction** - Extract all JSON-LD from page
|
|
2. **Syntax Validation** - Check JSON structure
|
|
3. **Schema.org Compliance** - Validate against schema.org specs
|
|
4. **Google Rich Results** - Check eligibility for rich snippets
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Validate page schema
|
|
python ourdigital-custom-skills/13-seo-schema-validator/code/scripts/schema_validator.py \
|
|
--url https://example.com
|
|
|
|
# Validate local file
|
|
python ourdigital-custom-skills/13-seo-schema-validator/code/scripts/schema_validator.py \
|
|
--file schema.json
|
|
|
|
# Batch validation
|
|
python ourdigital-custom-skills/13-seo-schema-validator/code/scripts/schema_validator.py \
|
|
--urls urls.txt --output validation_report.json
|
|
```
|
|
|
|
## Supported Schema Types
|
|
- Article, BlogPosting, NewsArticle
|
|
- Product, Offer, AggregateRating
|
|
- LocalBusiness, Organization
|
|
- FAQPage, HowTo, Recipe
|
|
- BreadcrumbList, WebSite
|