Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

seo-masterySEO mastery 搜索

Agent Skill

seo-mastery 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

470

周安装

19

GitHub Stars

5

下载量

147
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:seo-mastery(SEO mastery 搜索)
来源仓库:https://github.com/kpab/seo-mastery-agent-skills
仓库路径:skills/seo-mastery
安装命令:
npx skills add https://github.com/kpab/seo-mastery-agent-skills --skill seo-mastery
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kpab/seo-mastery-agent-skills --skill seo-mastery

简介

seo-mastery 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 可用于支持技术调研、文档查找或问题排查任务。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网操作。
  • 可结合原始 README 进一步核验具体功能和使用限制。

SKILL.md

SEO Mastery Agent Skills

Comprehensive SEO optimization skill based on Google's official documentation. Provides integrated support for technical SEO, content optimization, structured data, Core Web Vitals, and site audits.

When to Use This Skill

Technical SEO

  • Debugging crawl and indexing issues
  • Configuring robots.txt / sitemap.xml
  • Implementing canonical URLs / hreflang
  • JavaScript SEO optimization
  • Mobile-first optimization
  • Server-side rendering (SSR) setup

Content SEO

  • Meta tag optimization (title, description)
  • Heading structure design (H1-H6)
  • E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) strategies
  • Search intent-aligned content design
  • Internal linking strategy

Structured Data

  • JSON-LD schema.org implementation
  • Rich results support (FAQ, How-to, Article, Product, etc.)
  • VideoObject, BroadcastEvent implementation
  • BreadcrumbList configuration
  • LocalBusiness / Organization setup

Core Web Vitals

  • LCP (Largest Contentful Paint) optimization
  • INP (Interaction to Next Paint) improvement
  • CLS (Cumulative Layout Shift) fixes
  • Performance monitoring and improvement

Site Audit

  • Comprehensive SEO audit workflow
  • Automated checklist generation
  • Issue prioritization
  • Improvement report creation

Quick Start

Basic Usage

# Request meta tag optimization
"Optimize the meta tags for this page"

# Generate structured data
"Add Article structured data to this blog post"

# Run site audit
"Perform an SEO audit on this site"

# Improve Core Web Vitals
"How can I improve LCP?"

Technical SEO Checklist

Crawl Optimization

  • robots.txt is properly configured
  • XML sitemap exists and is submitted to Search Console
  • Important pages are not set to noindex
  • Crawl budget is not wasted
  • No 404/5xx errors

Index Optimization

  • Canonical URLs are correctly set
  • Duplicate content is properly handled
  • hreflang (for multilingual sites) is correct
  • Mobile and desktop versions have the same content

Rendering Optimization

  • JavaScript is properly rendered
  • Critical content is included in HTML
  • Lazy loading is properly implemented

Structured Data Templates

Article

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "Article title (max 110 characters recommended)",
  "description": "Article description",
  "image": [
    "https://example.com/photos/1x1/photo.jpg",
    "https://example.com/photos/4x3/photo.jpg",
    "https://example.com/photos/16x9/photo.jpg"
  ],
  "datePublished": "2025-01-01T08:00:00+00:00",
  "dateModified": "2025-01-15T10:30:00+00:00",
  "author": {
    "@type": "Person",
    "name": "Author Name",
    "url": "https://example.com/author/profile"
  },
  "publisher": {
    "@type": "Organization",
    "name": "Site Name",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  }
}

FAQ

{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "Question 1 text",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Answer 1 text"
      }
    },
    {
      "@type": "Question",
      "name": "Question 2 text",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Answer 2 text"
      }
    }
  ]
}

BreadcrumbList

{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "Home",
      "item": "https://example.com/"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "Category",
      "item": "https://example.com/category/"
    },
    {
      "@type": "ListItem",
      "position": 3,
      "name": "Current Page"
    }
  ]
}

Product

{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Product Name",
  "image": "https://example.com/product.jpg",
  "description": "Product description",
  "brand": {
    "@type": "Brand",
    "name": "Brand Name"
  },
  "offers": {
    "@type": "Offer",
    "url": "https://example.com/product",
    "priceCurrency": "USD",
    "price": "99.00",
    "availability": "https://schema.org/InStock",
    "seller": {
      "@type": "Organization",
      "name": "Seller Name"
    }
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.5",
    "reviewCount": "128"
  }
}

LocalBusiness

{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "Business Name",
  "image": "https://example.com/store.jpg",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "123 Main Street",
    "addressLocality": "New York",
    "addressRegion": "NY",
    "postalCode": "10001",
    "addressCountry": "US"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 40.7128,
    "longitude": -74.0060
  },
  "telephone": "+1-212-555-1234",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"],
      "opens": "09:00",
      "closes": "18:00"
    }
  ],
  "priceRange": "$$"
}

VideoObject

{
  "@context": "https://schema.org",
  "@type": "VideoObject",
  "name": "Video Title",
  "description": "Video description",
  "thumbnailUrl": [
    "https://example.com/thumb-1x1.jpg",
    "https://example.com/thumb-4x3.jpg",
    "https://example.com/thumb-16x9.jpg"
  ],
  "uploadDate": "2025-01-01T08:00:00+00:00",
  "duration": "PT5M30S",
  "contentUrl": "https://example.com/video.mp4",
  "embedUrl": "https://example.com/embed/video123",
  "interactionStatistic": {
    "@type": "InteractionCounter",
    "interactionType": { "@type": "WatchAction" },
    "userInteractionCount": 12345
  },
  "hasPart": [
    {
      "@type": "Clip",
      "name": "Introduction",
      "startOffset": 0,
      "endOffset": 30,
      "url": "https://example.com/video?t=0"
    },
    {
      "@type": "Clip",
      "name": "Main Content",
      "startOffset": 30,
      "endOffset": 300,
      "url": "https://example.com/video?t=30"
    }
  ]
}

Core Web Vitals Optimization Guide

LCP (Largest Contentful Paint) - Target: Under 2.5 seconds

Common Causes and Solutions:

CauseSolution
Slow server responseCDN implementation, cache optimization, server upgrades
Render-blocking resourcesDefer CSS/JS loading, inline Critical CSS
Slow image loadingUse WebP/AVIF, specify proper sizes, preload settings
Client-side renderingImplement SSR/SSG, pre-render critical content

Example: Image Preloading

<link rel="preload" as="image" href="hero-image.webp" fetchpriority="high">

INP (Interaction to Next Paint) - Target: Under 200ms

Common Causes and Solutions:

CauseSolution
Heavy JavaScriptCode splitting, remove unnecessary JS, defer execution
Long tasksSplit tasks (yield to main thread)
Large DOM sizeReduce DOM elements, implement virtual scrolling
Third-party scriptsLazy load, review necessity

Example: Splitting Long Tasks

async function processLargeArray(items) {
  for (const item of items) {
    processItem(item);
    // Yield to main thread
    await new Promise(resolve => setTimeout(resolve, 0));
  }
}

CLS (Cumulative Layout Shift) - Target: Under 0.1

Common Causes and Solutions:

CauseSolution
Images/videos without dimensionsSpecify width/height attributes, use aspect-ratio CSS
Dynamically inserted contentReserve space in advance, use skeleton UI
Web fonts (FOUT/FOIT)font-display: swap, preload fonts
Ads/embedsPre-position fixed-size containers

Example: Image Aspect Ratio

<img src="image.jpg" width="800" height="600" alt="Description"
     style="aspect-ratio: 4/3; width: 100%; height: auto;">

E-E-A-T Optimization Checklist

Experience

  • Provide content based on first-hand experience
  • Include actual product usage reviews/photos
  • Present case studies and examples

Expertise

  • Author information page exists
  • Author credentials/background are stated
  • Content focuses on specialized field
  • Provide accurate and up-to-date information

Authoritativeness

  • Backlinks from trusted external sites
  • Citations from industry bodies/experts
  • Brand mentions earned
  • Expert review/supervision

Trustworthiness

  • HTTPS enabled
  • Privacy policy exists
  • Contact information is clear
  • Company information/location is stated
  • User reviews/ratings are displayed
  • Sources are cited

Site Audit Workflow

Phase 1: Crawl Diagnosis

# Check robots.txt
curl -s https://example.com/robots.txt

# Check sitemap
curl -s https://example.com/sitemap.xml | head -50

# Index status (site: search)
# Search "site:example.com" on Google

Check Items:

  1. Are important pages blocked by robots.txt?
  2. Does sitemap.xml exist and include main pages?
  3. Does index count match expectations?

Phase 2: Page-Level Diagnosis

HTML Head Elements:

# Extract meta information
curl -s https://example.com/ | grep -E '<title>|<meta name="description"|<link rel="canonical"'

Check Items:

  1. Title tag (under 60 characters, includes keywords)
  2. Meta description (under 160 characters)
  3. Canonical URL
  4. OGP / Twitter Card tags
  5. Structured data presence

Phase 3: Performance Diagnosis

Lighthouse CLI:

npx lighthouse https://example.com --output=json --output-path=./report.json

Check Items:

  1. Core Web Vitals scores
  2. Accessibility score
  3. SEO score
  4. Performance improvement suggestions

Phase 4: Competitive Analysis

  1. Content volume/structure of top-ranking sites
  2. Backlink profiles
  3. Structured data usage
  4. Page speed comparison

Phase 5: Improvement Priority Matrix

PriorityImpactDifficultyExamples
CriticalHighLowRemove noindex, fix 404s
HighHighMediumAdd structured data, optimize meta tags
MediumMediumMediumCore Web Vitals improvements
LowLowHighMajor site structure changes

Related Reference Files

This skill includes the following detailed documents:

FileContentUse Case
technical-seo.mdrobots.txt, sitemap, canonical, hreflang, etc.Technical SEO configuration
content-seo.mdMeta tags, heading structure, content designContent optimization
structured-data.mdAll structured data type detailsRich results implementation
core-web-vitals.mdDetailed LCP/INP/CLS optimizationPerformance improvement
audit-workflow.mdAudit procedures, tools, report formatsSite audit execution

Recommended Tools

Google Official

CLI/Development Tools

  • Lighthouse CLI - Performance auditing
  • Screaming Frog - Large-scale site crawling
  • ahrefs / SEMrush - Competitive & backlink analysis

Common Mistakes and Solutions

1. Keyword Stuffing

  • Avoid: "SEO SEO SEO optimization SEO tools SEO company"
  • Better: Use keywords naturally in context

2. Duplicate Content

  • Avoid: www vs non-www, http vs https as separate URLs
  • Better: Canonical settings, 301 redirects

3. Slow Image Loading

  • Avoid: Large PNG/JPG files used as-is
  • Better: WebP conversion, proper sizing, lazy loading

4. Structured Data Errors

  • Avoid: Missing required fields, invalid formats
  • Better: Pre-validate with Rich Results Test

5. Not Mobile-Friendly

  • Avoid: Desktop-only, no touch support
  • Better: Responsive design, adequate tap targets

Official Resources


Changelog

  • v1.0.0 (2025-01) - Initial release

- Created based on Google's official SEO guides - Comprehensive technical SEO, content SEO, structured data coverage - Core Web Vitals (2024 INP-compliant version) - E-E-A-T optimization checklist added - Site audit workflow added

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.75%
按下载量换算53

Claude

27.41%
按下载量换算40

Cursor

18.04%
按下载量换算27

Gemini CLI

8.98%
按下载量换算13

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills