Files
our-claude-skills/.claude/commands/seo-schema-generator.md
Andrew Yim 81afe587ce feat(settings-audit): Add Claude Code settings optimizer skill
- 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>
2026-01-20 18:00:24 +07:00

47 lines
1.2 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 ourdigital-custom-skills/14-seo-schema-generator/code/scripts/schema_generator.py \
--type LocalBusiness --output schema.json
# With custom data
python ourdigital-custom-skills/14-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