google-official-seo-guide by littleben/awesomeagentskills
npx skills add https://github.com/littleben/awesomeagentskills --skill google-official-seo-guide基于 Google 官方文档,提供 Google 搜索优化、SEO 最佳实践和搜索可见性改进的综合帮助。
当用户询问以下内容时,应触发此技能:
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Video title",
"description": "Video description",
"thumbnailUrl": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"uploadDate": "2024-03-31T08:00:00+08:00",
"duration": "PT1M54S",
"contentUrl": "https://example.com/video.mp4",
"embedUrl": "https://example.com/embed/123"
}
适用于 : 添加基本的视频元数据,以帮助 Google 理解并在搜索结果中显示您的视频。
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Livestream title",
"uploadDate": "2024-10-27T14:00:00+00:00",
"publication": {
"@type": "BroadcastEvent",
"isLiveBroadcast": true,
"startDate": "2024-10-27T14:00:00+00:00",
"endDate": "2024-10-27T14:37:14+00:00"
}
}
适用于 : 在 Google 搜索结果中为直播视频启用 LIVE 徽章。
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Cat video",
"hasPart": [
{
"@type": "Clip",
"name": "Cat jumps",
"startOffset": 30,
"endOffset": 45,
"url": "https://example.com/video?t=30"
},
{
"@type": "Clip",
"name": "Cat misses the fence",
"startOffset": 111,
"endOffset": 150,
"url": "https://example.com/video?t=111"
}
]
}
适用于 : 手动指定视频中的重要时间戳/章节,用于关键时刻功能。
<!-- Bad: Too generic -->
<a href="https://example.com">Click here</a> to learn more.
<!-- Better: Descriptive and contextual -->
For a full list of cheese available for purchase, see the
<a href="https://example.com">list of cheese types</a>.
<!-- Bad: Too many adjacent links -->
I've written about cheese
<a href="/page1">so</a>
<a href="/page2">many</a>
<a href="/page3">times</a>.
<!-- Better: Spaced out with context -->
I've written about cheese so many times this year:
the <a href="/blue-cheese">controversy over blue cheese</a>,
the <a href="/oldest-brie">world's oldest brie</a>, and
<a href="/boy-and-cheese">A Boy and His Cheese</a>.
适用于 : 创建有效的内部和外部链接,帮助用户和 Google 理解您的内容。
<!-- Recommended: Google can crawl these -->
<a href="https://example.com">Link text</a>
<a href="/products/category/shoes">Link text</a>
<a href="./products/category/shoes">Link text</a>
<!-- Not recommended: May not be crawled -->
<a routerLink="products/category">Link text</a>
<a onclick="goto('https://example.com')">Link text</a>
<span href="https://example.com">Link text</span>
适用于 : 确保您的链接可以被 Googlebot 发现和爬取。
<!-- Mobile version (https://m.example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" hreflang="es" href="https://m.example.com/es/">
<link rel="alternate" hreflang="fr" href="https://m.example.com/fr/">
<!-- Desktop version (https://example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width: 640px)"
href="https://m.example.com/">
<link rel="alternate" hreflang="es" href="https://example.com/es/">
<link rel="alternate" hreflang="fr" href="https://example.com/fr/">
适用于 : 为独立的移动端 URL(m-dot 站点)正确配置国际化支持。
<!-- Don't index this page -->
<meta name="robots" content="noindex">
<!-- Don't follow links on this page -->
<meta name="robots" content="nofollow">
<!-- Don't index and don't follow -->
<meta name="robots" content="noindex, nofollow">
<!-- Don't show snippet in search results -->
<meta name="robots" content="nosnippet">
适用于 : 控制 Google 如何爬取和索引特定页面。
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Video title",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": { "@type": "WatchAction" },
"userInteractionCount": 12345
}
}
适用于 : 显示您视频内容的观看次数。
<!-- Citing sources with proper attribution -->
<p>
According to a recent study from Swiss researchers,
Emmental cheese wheels exposed to music had a milder flavor,
with the full findings available in
<a href="https://example.com/cheese-study">
Cheese in Surround Sound—a culinary art experiment
</a>.
</p>
<!-- Use nofollow when you don't trust the source -->
<a href="https://untrusted-site.com" rel="nofollow">
Untrusted content
</a>
<!-- Sponsored links must be marked -->
<a href="https://partner-site.com" rel="sponsored">
Partner content
</a>
适用于 : 在保持 SEO 最佳实践的同时,正确链接到外部来源。
<!-- Ensure same robots meta tags on mobile and desktop -->
<meta name="robots" content="index, follow">
<!-- Use same structured data on both versions -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Corp"
}
</script>
<!-- Ensure images have proper alt text on mobile -->
<img src="product.jpg" alt="Blue ceramic vase, 12 inches tall">
<!-- Use same title and meta description -->
<title>Product Name - Category | Site Name</title>
<meta name="description" content="High-quality product description">
适用于 : 确保您的移动端网站针对 Google 的移动优先索引进行了适当优化。
此技能包含按以下类别组织的综合文档:
内容 : Google Search Console、监控工具和 API 入门。
关键主题 :
何时使用 : 设置监控、访问 Search Console 功能、了解可用报告。
内容 : Google 搜索中的视觉元素和富媒体搜索结果。
关键主题 :
何时使用 : 优化您的内容在搜索结果中的显示方式、实现富媒体结果、了解搜索界面元素。
内容 : Google 如何发现、爬取和访问网络内容。
关键主题 :
何时使用 : 调试爬取问题、优化爬取效率、控制 Google 爬取的内容。
内容 : 核心概念和基本的 SEO 知识。
关键主题 :
何时使用 : 学习 SEO 基础知识、了解 Google 搜索基本原理、启动新项目。
内容 : 针对特定 SEO 任务的详细操作指南。
关键主题 :
何时使用 : 实施特定的 SEO 功能、解决技术性 SEO 挑战、遵循最佳实践。
内容 : Google 如何索引内容以及如何排查索引问题。
关键主题 :
何时使用 : 修复索引问题、管理重复内容、控制被索引的内容。
内容 : 附加主题和专门信息。
关键主题 :
何时使用 : 了解政策、避免处罚、了解 Google 的最新变化。
内容 : 结构化数据和专门的搜索功能。
关键主题 :
何时使用 : 实现视频功能、添加结构化数据、启用富媒体结果、调试标记错误。
从 fundamentals.md 开始,了解:
然后查看 guides.md 以进行实际实施:
专业提示 : 使用上面的快速参考示例作为常见任务的模板。
重点关注以下领域:
常见工作流程 :
优先阅读:
常见任务 :
探索专门主题:
高级模式 :
要使用更新的文档刷新此技能:
每周安装次数
189
代码仓库
GitHub 星标数
150
首次出现
2026年1月20日
安全审计
安装于
gemini-cli143
opencode142
codex139
github-copilot131
cursor126
claude-code123
Comprehensive assistance with Google Search optimization, SEO best practices, and search visibility improvements based on official Google documentation.
This skill should be triggered when users ask about:
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Video title",
"description": "Video description",
"thumbnailUrl": [
"https://example.com/photos/1x1/photo.jpg",
"https://example.com/photos/4x3/photo.jpg",
"https://example.com/photos/16x9/photo.jpg"
],
"uploadDate": "2024-03-31T08:00:00+08:00",
"duration": "PT1M54S",
"contentUrl": "https://example.com/video.mp4",
"embedUrl": "https://example.com/embed/123"
}
Use this for : Adding basic video metadata to help Google understand and display your videos in search results.
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Livestream title",
"uploadDate": "2024-10-27T14:00:00+00:00",
"publication": {
"@type": "BroadcastEvent",
"isLiveBroadcast": true,
"startDate": "2024-10-27T14:00:00+00:00",
"endDate": "2024-10-27T14:37:14+00:00"
}
}
Use this for : Enabling the LIVE badge on livestream videos in Google Search results.
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Cat video",
"hasPart": [
{
"@type": "Clip",
"name": "Cat jumps",
"startOffset": 30,
"endOffset": 45,
"url": "https://example.com/video?t=30"
},
{
"@type": "Clip",
"name": "Cat misses the fence",
"startOffset": 111,
"endOffset": 150,
"url": "https://example.com/video?t=111"
}
]
}
Use this for : Manually specifying important timestamps/chapters in your video for the key moments feature.
<!-- Bad: Too generic -->
<a href="https://example.com">Click here</a> to learn more.
<!-- Better: Descriptive and contextual -->
For a full list of cheese available for purchase, see the
<a href="https://example.com">list of cheese types</a>.
<!-- Bad: Too many adjacent links -->
I've written about cheese
<a href="/page1">so</a>
<a href="/page2">many</a>
<a href="/page3">times</a>.
<!-- Better: Spaced out with context -->
I've written about cheese so many times this year:
the <a href="/blue-cheese">controversy over blue cheese</a>,
the <a href="/oldest-brie">world's oldest brie</a>, and
<a href="/boy-and-cheese">A Boy and His Cheese</a>.
Use this for : Creating effective internal and external links that help both users and Google understand your content.
<!-- Recommended: Google can crawl these -->
<a href="https://example.com">Link text</a>
<a href="/products/category/shoes">Link text</a>
<a href="./products/category/shoes">Link text</a>
<!-- Not recommended: May not be crawled -->
<a routerLink="products/category">Link text</a>
<a onclick="goto('https://example.com')">Link text</a>
<span href="https://example.com">Link text</span>
Use this for : Ensuring your links are discoverable and crawlable by Googlebot.
<!-- Mobile version (https://m.example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" hreflang="es" href="https://m.example.com/es/">
<link rel="alternate" hreflang="fr" href="https://m.example.com/fr/">
<!-- Desktop version (https://example.com/) -->
<link rel="canonical" href="https://example.com/">
<link rel="alternate" media="only screen and (max-width: 640px)"
href="https://m.example.com/">
<link rel="alternate" hreflang="es" href="https://example.com/es/">
<link rel="alternate" hreflang="fr" href="https://example.com/fr/">
Use this for : Properly configuring separate mobile URLs (m-dot sites) with internationalization support.
<!-- Don't index this page -->
<meta name="robots" content="noindex">
<!-- Don't follow links on this page -->
<meta name="robots" content="nofollow">
<!-- Don't index and don't follow -->
<meta name="robots" content="noindex, nofollow">
<!-- Don't show snippet in search results -->
<meta name="robots" content="nosnippet">
Use this for : Controlling how Google crawls and indexes specific pages.
{
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Video title",
"interactionStatistic": {
"@type": "InteractionCounter",
"interactionType": { "@type": "WatchAction" },
"userInteractionCount": 12345
}
}
Use this for : Displaying the number of views/watches for your video content.
<!-- Citing sources with proper attribution -->
<p>
According to a recent study from Swiss researchers,
Emmental cheese wheels exposed to music had a milder flavor,
with the full findings available in
<a href="https://example.com/cheese-study">
Cheese in Surround Sound—a culinary art experiment
</a>.
</p>
<!-- Use nofollow when you don't trust the source -->
<a href="https://untrusted-site.com" rel="nofollow">
Untrusted content
</a>
<!-- Sponsored links must be marked -->
<a href="https://partner-site.com" rel="sponsored">
Partner content
</a>
Use this for : Properly linking to external sources while maintaining SEO best practices.
<!-- Ensure same robots meta tags on mobile and desktop -->
<meta name="robots" content="index, follow">
<!-- Use same structured data on both versions -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Corp"
}
</script>
<!-- Ensure images have proper alt text on mobile -->
<img src="product.jpg" alt="Blue ceramic vase, 12 inches tall">
<!-- Use same title and meta description -->
<title>Product Name - Category | Site Name</title>
<meta name="description" content="High-quality product description">
Use this for : Ensuring your mobile site is properly optimized for Google's mobile-first indexing.
This skill includes comprehensive documentation organized into the following categories:
Content : Getting started with Google Search Console, monitoring tools, and APIs.
Key Topics :
When to use : Setting up monitoring, accessing Search Console features, understanding available reports.
Content : Visual elements and rich results in Google Search.
Key Topics :
When to use : Optimizing how your content appears in search results, implementing rich results, understanding search UI elements.
Content : How Google discovers, crawls, and accesses web content.
Key Topics :
When to use : Debugging crawling issues, optimizing crawl efficiency, controlling what Google crawls.
Content : Core concepts and essential SEO knowledge.
Key Topics :
When to use : Learning SEO basics, understanding Google Search fundamentals, starting a new project.
Content : Detailed how-to guides for specific SEO tasks.
Key Topics :
When to use : Implementing specific SEO features, solving technical SEO challenges, following best practices.
Content : How Google indexes content and troubleshooting indexing issues.
Key Topics :
When to use : Fixing indexing problems, managing duplicate content, controlling what gets indexed.
Content : Additional topics and specialized information.
Key Topics :
When to use : Understanding policies, avoiding penalties, staying current with Google changes.
Content : Structured data and specialized search features.
Key Topics :
When to use : Implementing video features, adding structured data, enabling rich results, debugging markup errors.
Start with fundamentals.md to understand:
Then review guides.md for practical implementation:
Pro tip : Use the Quick Reference examples above as templates for common tasks.
Focus on these areas:
Common workflows :
Priority reading:
Common tasks :
Explore specialized topics:
Advanced patterns :
To refresh this skill with updated documentation:
Weekly Installs
189
Repository
GitHub Stars
150
First Seen
Jan 20, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
gemini-cli143
opencode142
codex139
github-copilot131
cursor126
claude-code123
程序化SEO实战指南:大规模创建优质页面,避免内容单薄惩罚
38,200 周安装
video-understand:离线视频理解工具,使用FFmpeg提取帧+Whisper转录,无需API密钥
759 周安装
cmux-browser 浏览器自动化技能:使用 CLI 命令实现网页操作与测试
761 周安装
高端前端开发与设计技能指南:打造现代、艺术级用户界面与交互体验
813 周安装
每日销售简报AI工具 - 自动生成优先级行动计划,整合日历、CRM和邮件数据
791 周安装
Binance子账户API开发指南 - 虚拟账户创建、期货期权管理、资产查询
859 周安装
FlowStudio MCP 构建部署 Power Automate 云流指南 | 自动化流程开发
871 周安装