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

seo-optimizerSEO 优化器

Agent Skill

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

总安装

759

周安装

31

GitHub Stars

1

下载量

243
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/pixel-process-ug/superkit-agents --skill seo-optimizer

简介

seo-optimizer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于 SEO 优化相关的信息搜集与筛选,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议确认是否会触发联网、命令执行或文件读写等操作边界。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

SEO Optimizer

Overview

Optimize websites for search engine visibility through technical SEO, on-page optimization, structured data implementation, and Core Web Vitals performance tuning. This skill covers crawlability, indexability, meta tag strategy, Schema.org markup, sitemap generation, canonical URL management, internationalization (hreflang), and performance optimization for Google's ranking signals.

Apply this skill whenever a site needs better organic search performance, whether for a single page audit or a full-site overhaul.

Multi-Phase Process

Phase 1: Technical Audit

  1. Crawl the site (Screaming Frog, Sitebulb, or custom script)
  2. Check robots.txt and XML sitemap validity
  3. Identify crawl errors, redirect chains, and broken links
  4. Verify canonical URLs and duplicate content handling
  5. Assess mobile-friendliness and responsive design
  6. Check HTTPS implementation and mixed content
  7. Evaluate page load performance (Core Web Vitals)
STOP — Do NOT proceed to Phase 2 until audit findings are documented and prioritized.

Phase 2: On-Page Optimization

  1. Audit title tags (unique, 50-60 chars, keyword placement)
  2. Review meta descriptions (unique, 150-160 chars, compelling CTAs)
  3. Analyze heading hierarchy (single H1, logical H2-H6 structure)
  4. Optimize image alt text and file names
  5. Review internal linking structure and anchor text
  6. Check URL structure (short, descriptive, hyphenated)
  7. Validate Open Graph and Twitter Card tags
STOP — Do NOT proceed to Phase 3 until on-page changes are implemented and verified.

Phase 3: Structured Data Implementation

  1. Identify applicable Schema.org types for content
  2. Implement JSON-LD structured data
  3. Validate with Google Rich Results Test
  4. Test for rich snippet eligibility
  5. Monitor Search Console for structured data errors
STOP — Do NOT proceed to Phase 4 until structured data passes validation.

Phase 4: Monitoring and Iteration

  1. Set up Google Search Console monitoring
  2. Track Core Web Vitals over time
  3. Monitor indexation status and coverage
  4. Review search performance (clicks, impressions, CTR, position)
  5. Set up alerts for crawl errors and ranking drops

Audit Priority Decision Table

FindingSeverityFix PriorityImpact
No HTTPS / mixed contentCriticalImmediateRanking penalty, trust signals
Missing canonical URLsCriticalImmediateDuplicate content dilution
Broken redirect chains (3+ hops)HighThis sprintCrawl budget waste, link equity loss
Missing or duplicate title tagsHighThis sprintCTR drop, ranking confusion
No structured dataMediumNext sprintMissing rich snippets
Missing alt text on imagesMediumNext sprintAccessibility and image search loss
Suboptimal Core Web VitalsMediumNext sprintRanking signal, user experience
Missing hreflang tags (multi-language)LowBacklogGeo-targeting issues
Non-descriptive URL slugsLowBacklogMinor ranking and CTR effect

Meta Tag Reference

Essential Meta Tags

<head>
  <!-- Primary -->
  <title>Primary Keyword - Secondary Keyword | Brand Name</title>
  <meta name="description" content="Compelling 150-160 char description with target keyword and clear value proposition.">
  <link rel="canonical" href="https://example.com/page">

  <!-- Robots -->
  <meta name="robots" content="index, follow">
  <!-- or noindex, nofollow for pages that shouldn't be indexed -->

  <!-- Viewport (mobile) -->
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <!-- Open Graph -->
  <meta property="og:type" content="website">
  <meta property="og:title" content="Page Title for Social Sharing">
  <meta property="og:description" content="Description optimized for social sharing.">
  <meta property="og:image" content="https://example.com/og-image.jpg">
  <meta property="og:url" content="https://example.com/page">
  <meta property="og:site_name" content="Brand Name">

  <!-- Twitter Card -->
  <meta name="twitter:card" content="summary_large_image">
  <meta name="twitter:title" content="Page Title">
  <meta name="twitter:description" content="Twitter-optimized description.">
  <meta name="twitter:image" content="https://example.com/twitter-image.jpg">

  <!-- Internationalization -->
  <link rel="alternate" hreflang="en" href="https://example.com/en/page">
  <link rel="alternate" hreflang="de" href="https://example.com/de/page">
  <link rel="alternate" hreflang="x-default" href="https://example.com/page">
</head>

Meta Tag Optimization Matrix

ElementMax LengthPriority KeywordsCommon Mistakes
Title tag50-60 charsFront-load primary keywordToo long, keyword stuffing, duplicate
Meta description150-160 charsInclude CTA and keywordMissing, duplicate, no CTA
H1N/A (single per page)Primary keyword variationMultiple H1s, missing H1
URL slug3-5 wordsTarget keywordToo long, parameters, underscores
Image alt125 charsDescriptive, keyword if naturalEmpty, "image of...", keyword stuffing
OG title60-90 charsEngaging, shareableSame as title tag (missed opportunity)

Structured Data (JSON-LD)

Article

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "How to Optimize Core Web Vitals",
  "author": {
    "@type": "Person",
    "name": "Jane Smith",
    "url": "https://example.com/authors/jane-smith"
  },
  "datePublished": "2026-03-01",
  "dateModified": "2026-03-15",
  "image": "https://example.com/images/article-hero.jpg",
  "publisher": {
    "@type": "Organization",
    "name": "Example Blog",
    "logo": {
      "@type": "ImageObject",
      "url": "https://example.com/logo.png"
    }
  },
  "description": "A comprehensive guide to improving LCP, FID, and CLS scores."
}
</script>

Product

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Product",
  "name": "Widget Pro",
  "description": "Professional-grade widget for enterprise use.",
  "image": "https://example.com/widget-pro.jpg",
  "brand": { "@type": "Brand", "name": "WidgetCo" },
  "offers": {
    "@type": "Offer",
    "price": "49.99",
    "priceCurrency": "USD",
    "availability": "https://schema.org/InStock",
    "url": "https://example.com/widget-pro"
  },
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.7",
    "reviewCount": "312"
  }
}
</script>

FAQ Page

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "What is Core Web Vitals?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Core Web Vitals are a set of metrics that measure real-world user experience for loading, interactivity, and visual stability."
      }
    }
  ]
}
</script>

Schema Type Decision Guide

Content TypeSchema TypeRich Result
Blog postArticleArticle snippet
Product pageProductPrice, rating, availability
FAQ sectionFAQPageExpandable Q&A
How-to guideHowToStep-by-step snippet
RecipeRecipeImage, time, rating
EventEventDate, location, price
Local businessLocalBusinessMap pack, hours
SoftwareSoftwareApplicationRating, price
BreadcrumbsBreadcrumbListBreadcrumb trail
VideoVideoObjectThumbnail, duration

Core Web Vitals

Metrics and Thresholds

MetricGoodNeeds ImprovementPoorMeasures
LCP (Largest Contentful Paint)<= 2.5s<= 4.0s> 4.0sLoading performance
INP (Interaction to Next Paint)<= 200ms<= 500ms> 500msInteractivity
CLS (Cumulative Layout Shift)<= 0.1<= 0.25> 0.25Visual stability

LCP Optimization

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

<!-- Use modern image formats -->
<picture>
  <source srcset="/hero.avif" type="image/avif">
  <source srcset="/hero.webp" type="image/webp">
  <img src="/hero.jpg" alt="Hero description" width="1200" height="600"
       fetchpriority="high" decoding="async">
</picture>

CLS Prevention

/* Always set dimensions on images and video */
img, video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* Reserve space for dynamic content */
.ad-slot {
  min-height: 250px;
}

/* Avoid inserting content above existing content */
.notification-bar {
  position: fixed; /* doesn't shift layout */
}

INP Optimization

// Break long tasks with yield
async function processLargeDataset(data) {
  for (let i = 0; i < data.length; i++) {
    processItem(data[i]);
    if (i % 100 === 0) {
      await new Promise(resolve => setTimeout(resolve, 0)); // yield to main thread
    }
  }
}

// Use requestIdleCallback for non-critical work
requestIdleCallback(() => {
  loadAnalytics();
  initNonCriticalFeatures();
});

XML Sitemap

Generation Pattern

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
  <url>
    <loc>https://example.com/</loc>
    <lastmod>2026-03-15</lastmod>
    <changefreq>daily</changefreq>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://example.com/products</loc>
    <lastmod>2026-03-14</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.8</priority>
  </url>
</urlset>

Sitemap Best Practices

  • Maximum 50,000 URLs per sitemap file
  • Use sitemap index for larger sites
  • Include only canonical, indexable URLs
  • Update lastmod only when content genuinely changes
  • Submit via Google Search Console and robots.txt

robots.txt Template

User-agent: *
Allow: /
Disallow: /admin/
Disallow: /api/
Disallow: /search?
Disallow: /*?sort=
Disallow: /*?filter=

Sitemap: https://example.com/sitemap.xml

Next.js / React SEO Patterns

Next.js Metadata API (App Router)

import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: {
    template: '%s | Brand Name',
    default: 'Brand Name - Tagline',
  },
  description: 'Site-wide default description.',
  openGraph: {
    type: 'website',
    locale: 'en_US',
    url: 'https://example.com',
    siteName: 'Brand Name',
  },
  twitter: {
    card: 'summary_large_image',
  },
  robots: {
    index: true,
    follow: true,
  },
  alternates: {
    canonical: 'https://example.com',
  },
};

Dynamic Metadata per Page

export async function generateMetadata({ params }): Promise<Metadata> {
  const product = await getProduct(params.slug);

  return {
    title: product.name,
    description: product.description.slice(0, 160),
    openGraph: {
      title: product.name,
      description: product.description.slice(0, 200),
      images: [{ url: product.image, width: 1200, height: 630 }],
    },
  };
}

Anti-Patterns / Common Mistakes

Anti-PatternWhy It FailsWhat To Do Instead
Keyword stuffing in titles/contentTriggers spam filters, reduces CTRUse primary keyword once naturally, add variations
Same title/description across pagesDuplicate content signals, wasted opportunityUnique, page-specific meta for every indexable URL
Blocking CSS/JS in robots.txtGooglebot cannot render pagesAllow all rendering resources
Structured data mismatching page contentGoogle penalties, rich snippet removalSchema must reflect visible content exactly
Redirect chains > 2 hopsCrawl budget waste, link equity lossRedirect directly to final destination
JS-only navigation without SSR linksCrawler cannot discover pagesServer-render navigation links
Ignoring Core Web VitalsRanking signal degradationProfile and optimize LCP, INP, CLS
Missing canonical URLsDuplicate content penaltiesSet canonical on every indexable page
Over-optimized anchor textUnnatural link patterns trigger penaltiesUse descriptive, varied anchor text
Hiding content with CSS for SEOCloaking violationAll SEO content must be visible to users

Anti-Rationalization Guards

  • Do NOT skip the technical audit because "the site looks fine" -- crawl it.
  • Do NOT add structured data without validating it passes the Rich Results Test.
  • Do NOT assume meta tags are correct without checking every page type.
  • Do NOT deploy SEO changes without before/after measurement.
  • Do NOT optimize for search engines at the expense of user experience.

Integration Points

SkillHow It Connects
content-creatorSEO informs keyword targeting and headline strategy for marketing content
content-research-writerResearch-backed content needs SEO-optimized structure and meta tags
senior-frontendCore Web Vitals optimization requires frontend performance tuning
performance-optimizationPage speed directly affects LCP and INP scores
deploymentSEO changes need proper cache invalidation and redirect configuration
tech-docs-generatorDocumentation sites need sitemap, canonical, and structured data setup

Skill Type

FLEXIBLE — Adapt the optimization strategy to the site's technology stack, content type, and competitive landscape. Technical SEO fundamentals and structured data best practices are strongly recommended; specific implementation patterns vary by framework.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.11%
按下载量换算78

Claude

31.48%
按下载量换算76

Cursor

20.17%
按下载量换算49

Gemini CLI

8.33%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills