47 lines
1.3 KiB
Markdown
47 lines
1.3 KiB
Markdown
---
|
|
description: Seo Schema Generator command
|
|
---
|
|
|
|
# SEO Schema Generator
|
|
|
|
Generate JSON-LD structured data markup from templates.
|
|
|
|
## Triggers
|
|
- "generate schema", "create structured data", "make JSON-LD"
|
|
|
|
## Capabilities
|
|
|
|
1. **Template-based Generation** - Use pre-built templates
|
|
2. **Custom Schema** - Build schema from specifications
|
|
3. **Multi-type Support** - Combine multiple schema types
|
|
|
|
## Scripts
|
|
|
|
```bash
|
|
# Generate from template
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/17-seo-schema-generator/code/scripts/schema_generator.py \
|
|
--type LocalBusiness --output schema.json
|
|
|
|
# With custom data
|
|
python /Users/ourdigital/Project/our-claude-skills/custom-skills/17-seo-schema-generator/code/scripts/schema_generator.py \
|
|
--type Article \
|
|
--data '{"headline": "My Article", "author": "John Doe"}' \
|
|
--output article-schema.json
|
|
```
|
|
|
|
## Available Templates
|
|
|
|
| Type | Use Case |
|
|
|------|----------|
|
|
| `Article` | Blog posts, news articles |
|
|
| `LocalBusiness` | Local business pages |
|
|
| `Product` | E-commerce product pages |
|
|
| `FAQPage` | FAQ sections |
|
|
| `BreadcrumbList` | Navigation breadcrumbs |
|
|
| `Organization` | Company/about pages |
|
|
| `WebSite` | Homepage with sitelinks search |
|
|
|
|
## Output
|
|
- Valid JSON-LD ready for embedding
|
|
- HTML script tag format option
|