Complete implementation of OurDigital skills with dual-platform support (Claude Desktop + Claude Code) following standardized structure. Skills created: - 01-ourdigital-brand-guide: Brand reference & style guidelines - 02-ourdigital-blog: Korean blog drafts (blog.ourdigital.org) - 03-ourdigital-journal: English essays (journal.ourdigital.org) - 04-ourdigital-research: Research prompts & workflows - 05-ourdigital-document: Notion-to-presentation pipeline - 06-ourdigital-designer: Visual/image prompt generation - 07-ourdigital-ad-manager: Ad copywriting & keyword research - 08-ourdigital-trainer: Training materials & workshop planning - 09-ourdigital-backoffice: Quotes, proposals, cost analysis - 10-ourdigital-skill-creator: Meta skill for creating new skills Features: - YAML frontmatter with "ourdigital" or "our" prefix triggers - Standardized directory structure (code/, desktop/, shared/, docs/) - Shared environment setup (_ourdigital-shared/) - Comprehensive reference documentation - Cross-skill integration support Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.0 KiB
Markdown
41 lines
1.0 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 custom-skills/13-seo-schema-validator/code/scripts/schema_validator.py \
|
|
--url https://example.com
|
|
|
|
# Validate local file
|
|
python custom-skills/13-seo-schema-validator/code/scripts/schema_validator.py \
|
|
--file schema.json
|
|
|
|
# Batch validation
|
|
python 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
|