Add ourdigital-seo-audit skill with: - Full site audit orchestrator (full_audit.py) - Google Search Console and PageSpeed API clients - Schema.org JSON-LD validation and generation - XML sitemap and robots.txt validation - Notion database integration for findings export - Core Web Vitals measurement and analysis - 7 schema templates (article, faq, product, etc.) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
730 B
JSON
33 lines
730 B
JSON
{
|
|
"@context": "https://schema.org",
|
|
"@type": "{{article_type}}",
|
|
"headline": "{{headline}}",
|
|
"description": "{{description}}",
|
|
"image": [
|
|
"{{image_url_1}}",
|
|
"{{image_url_2}}"
|
|
],
|
|
"datePublished": "{{date_published}}",
|
|
"dateModified": "{{date_modified}}",
|
|
"author": {
|
|
"@type": "Person",
|
|
"name": "{{author_name}}",
|
|
"url": "{{author_url}}"
|
|
},
|
|
"publisher": {
|
|
"@type": "Organization",
|
|
"name": "{{publisher_name}}",
|
|
"logo": {
|
|
"@type": "ImageObject",
|
|
"url": "{{publisher_logo_url}}"
|
|
}
|
|
},
|
|
"mainEntityOfPage": {
|
|
"@type": "WebPage",
|
|
"@id": "{{page_url}}"
|
|
},
|
|
"articleSection": "{{section}}",
|
|
"wordCount": "{{word_count}}",
|
|
"keywords": "{{keywords}}"
|
|
}
|