google-official-seo-guide

littleben/awesomeagentskills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/littleben/awesomeagentskills --skill google-official-seo-guide
0 commentsdiscussion
summary

Comprehensive assistance with Google Search optimization, SEO best practices, and search visibility improvements based on official Google documentation.

skill.md

Google Official SEO Guide

Comprehensive assistance with Google Search optimization, SEO best practices, and search visibility improvements based on official Google documentation.

When to Use This Skill

This skill should be triggered when users ask about:

SEO & Search Optimization

  • Improving website ranking in Google Search
  • Implementing SEO best practices
  • Optimizing meta tags, titles, and descriptions
  • Fixing crawling or indexing issues
  • Understanding how Google Search works

Structured Data & Rich Results

  • Adding VideoObject, BroadcastEvent, or Clip structured data
  • Implementing schema.org markup for rich results
  • Creating sitemaps and robots.txt files
  • Setting up breadcrumb navigation
  • Configuring hreflang for multi-language sites

Technical SEO

  • Mobile-first indexing optimization
  • JavaScript SEO and rendering issues
  • Managing duplicate content with canonical tags
  • Configuring robots meta tags
  • URL structure and internal linking

Search Console & Monitoring

  • Using Google Search Console reports
  • Debugging search visibility issues
  • Monitoring crawl errors and indexing status
  • Analyzing search performance metrics

Content & Links

  • Writing effective anchor text
  • Internal and external linking strategies
  • Avoiding spam policies violations
  • Managing site migrations and redirects

Key Concepts

The Three Stages of Google Search

  1. Crawling: Googlebot discovers and fetches pages from the web
  2. Indexing: Google analyzes page content and stores it in the index
  3. Serving: Google returns relevant results for user queries

Important SEO Principles

  • Mobile-First Indexing: Google primarily uses the mobile version of content for indexing and ranking
  • Canonical URLs: Specify the preferred version of duplicate or similar pages
  • Structured Data: Use schema.org markup to help Google understand your content
  • Search Essentials: Technical, content, and spam requirements for Google Search eligibility

Common Structured Data Types

  • VideoObject: For video content and features
  • BroadcastEvent: For livestream videos (LIVE badge)
  • Clip: For video key moments/timestamps
  • SeekToAction: For auto-detected key moments in videos

Quick Reference

Example 1: Basic VideoObject Structured Data

{
  "@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.


Example 2: LIVE Badge with BroadcastEvent

{
  "@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.


Example 3: Video Key Moments with Clip

{
  "@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.


Example 4: Good Anchor Text Practices

<!-- 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.


Example 5: Crawlable Links

<!-- 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.


Example 6: Mobile and Desktop hreflang for Separate URLs

<!-- 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/) -->
how to use google-official-seo-guide

How to use google-official-seo-guide on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add google-official-seo-guide
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/littleben/awesomeagentskills --skill google-official-seo-guide

The skills CLI fetches google-official-seo-guide from GitHub repository littleben/awesomeagentskills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/google-official-seo-guide

Reload or restart Cursor to activate google-official-seo-guide. Access the skill through slash commands (e.g., /google-official-seo-guide) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

Task Automation & Efficiency

Automate repetitive workflows and reduce manual effort

Example

Generate reports, summarize documents, draft communications

Save 3-5 hours per week on routine tasks

Knowledge Enhancement

Learn new skills, understand complex topics, get expert guidance

Example

Explain concepts, provide examples, suggest learning resources

Accelerate learning and skill development by 2x

Quality Improvement

Enhance output quality through reviews, suggestions, and refinements

Example

Review drafts, suggest improvements, catch errors

Improve work quality by 30-40% with less effort

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client with skill support
  • Clear understanding of task or problem to solve
  • Willingness to iterate and refine outputs

Time Estimate

15-45 minutes depending on use case complexity

Installation Steps

  1. 1.Install skill using provided installation command
  2. 2.Test with simple use case relevant to your work
  3. 3.Evaluate output quality and relevance
  4. 4.Iterate on prompts to improve results
  5. 5.Integrate into regular workflow if valuable

Common Pitfalls

  • Expecting perfect results without iteration
  • Not providing enough context in prompts
  • Using skill for tasks outside its intended scope
  • Accepting outputs without review and validation

Best Practices

✓ Do

  • +Start with clear, specific prompts
  • +Provide relevant context and constraints
  • +Review and refine all outputs before using
  • +Iterate to improve output quality
  • +Document successful prompt patterns

✗ Don't

  • Don't use without understanding skill limitations
  • Don't skip validation of outputs
  • Don't share sensitive information in prompts
  • Don't expect skill to replace human judgment

💡 Pro Tips

  • Be specific about desired format and style
  • Ask for multiple options to choose from
  • Request explanations to understand reasoning
  • Combine AI efficiency with human expertise

When to Use This

✓ Use When

Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.

✗ Avoid When

Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.

Learning Path

  1. 1Familiarize yourself with skill capabilities and limitations
  2. 2Start with low-risk, non-critical tasks
  3. 3Progress to more complex and valuable use cases
  4. 4Build expertise through regular use and experimentation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.733 reviews
  • Pratham Ware· Dec 4, 2024

    Keeps context tight: google-official-seo-guide is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Emma Li· Dec 4, 2024

    I recommend google-official-seo-guide for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Sakshi Patil· Nov 23, 2024

    Registry listing for google-official-seo-guide matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Alexander Haddad· Nov 23, 2024

    Solid pick for teams standardizing on skills: google-official-seo-guide is focused, and the summary matches what you get after install.

  • Chaitanya Patil· Oct 14, 2024

    google-official-seo-guide reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Alexander Sharma· Oct 14, 2024

    google-official-seo-guide has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Hana Diallo· Sep 9, 2024

    google-official-seo-guide is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Piyush G· Sep 5, 2024

    I recommend google-official-seo-guide for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.

  • Diya Dixit· Sep 5, 2024

    google-official-seo-guide fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Ira Gill· Aug 28, 2024

    Keeps context tight: google-official-seo-guide is the kind of skill you can hand to a new teammate without a long onboarding doc.

showing 1-10 of 33

1 / 4