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

seo-optimizationSEO optimization 前端

Agent Skill

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

总安装

198

周安装

8

GitHub Stars

67

下载量

62
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/seb1n/awesome-ai-agent-skills --skill seo-optimization

简介

seo-optimization 用于查找、检索和筛选相关信息,适合优化搜索可见性。

  • 适用于需要根据关键词或任务场景从来源中获取信息的场景。
  • 通过 npx skills add 命令安装指定 GitHub 仓库中的技能模块。
  • 安装前需确认权限范围、维护状态,以及是否触发联网或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

SEO Optimization

This skill enables an AI agent to perform comprehensive search engine optimization on any webpage or website. The agent audits on-page factors (title tags, meta descriptions, headings, internal links), evaluates technical SEO health (Core Web Vitals, mobile-first indexing, crawlability), and implements structured data markup. The goal is to produce actionable recommendations that improve organic search rankings and click-through rates.

Workflow

  1. Crawl and inventory the page. Fetch the target URL and parse the full HTML document. Extract the title tag, meta description, canonical URL, Open Graph tags, all heading elements (H1–H6), images with alt attributes, and every internal and external link. Record the HTTP status code, response time, and redirect chain if applicable.
  2. Analyze on-page SEO elements. Evaluate the title tag for length (50–60 characters), keyword placement, and uniqueness. Check the meta description for length (150–160 characters) and compelling call-to-action language. Verify there is exactly one H1 tag that contains the primary keyword, and that H2–H4 tags form a logical content hierarchy. Flag missing alt text on images and broken internal links.
  3. Evaluate technical SEO factors. Assess Core Web Vitals — Largest Contentful Paint (LCP < 2.5s), First Input Delay (FID < 100ms), and Cumulative Layout Shift (CLS < 0.1). Check mobile-friendliness by analyzing the viewport meta tag and responsive layout. Verify the existence and correctness of robots.txt, XML sitemap, canonical tags, and hreflang tags for international sites. Identify render-blocking resources and unused CSS/JS.
  4. Implement structured data markup. Generate JSON-LD schema markup appropriate to the page type — Article, Product, FAQ, BreadcrumbList, Organization, or LocalBusiness. Validate the markup against Google's Rich Results requirements. Ensure the schema references match the visible page content to avoid structured data penalties.
  5. Audit internal linking and content depth. Map the internal link graph to identify orphan pages and shallow content clusters. Recommend anchor text improvements and suggest new internal links that strengthen topical authority. Evaluate content length and keyword density relative to top-ranking competitors.
  6. Generate a prioritized SEO report. Produce a structured report with findings organized by impact (critical, high, medium, low). Include before/after code snippets for recommended changes, estimated effort for each fix, and expected ranking impact. Provide a checklist format so engineers and content teams can track completion.

Usage

Provide the agent with the URL of the webpage to optimize and, optionally, the target keyword. The agent will return a full audit report with actionable fixes.

Prompt: Optimize the following page for the keyword "project management tools": https://example.com/blog/best-pm-tools

Examples

Example 1: Blog Post On-Page Optimization

Request: Optimize https://acme.com/blog/remote-work-tips for the keyword "remote work tips".

Before — HTML head:

<head>
  <title>Blog Post | Acme Co</title>
  <meta name="description" content="Read our latest blog post.">
</head>

After — Optimized HTML head:

<head>
  <title>15 Remote Work Tips That Boost Productivity in 2025 | Acme Co</title>
  <meta name="description" content="Discover 15 proven remote work tips to stay productive, manage your time, and avoid burnout. Backed by research from 500+ distributed teams.">
  <link rel="canonical" href="https://acme.com/blog/remote-work-tips">
  <meta property="og:title" content="15 Remote Work Tips That Boost Productivity">
  <meta property="og:description" content="Proven strategies from 500+ distributed teams.">
  <meta property="og:type" content="article">
  <script type="application/ld+json">
  {
    "@context": "https://schema.org",
    "@type": "Article",
    "headline": "15 Remote Work Tips That Boost Productivity in 2025",
    "author": { "@type": "Person", "name": "Jane Smith" },
    "datePublished": "2025-03-10",
    "description": "Proven remote work tips backed by research from 500+ distributed teams."
  }
  </script>
</head>

Example 2: Technical SEO Audit Findings

Request: Run a technical SEO audit on https://acme.com.

Audit Report:

PriorityIssueDetailsFix
CriticalMissing XML sitemapNo sitemap found at /sitemap.xml; 40% of pages not indexedGenerate and submit sitemap to Search Console
CriticalLCP = 4.8s on mobileHero image is 2.4 MB uncompressed PNGConvert to WebP, add width/height, use loading="lazy"
HighDuplicate title tags12 pages share the title "Acme Co — Home"Write unique, keyword-rich titles for each page
HighMissing canonical tags8 pages lack <link rel="canonical">, causing index bloatAdd self-referencing canonicals to every page
MediumNo robots.txtEntire site crawlable including /admin and /stagingCreate robots.txt disallowing private paths
LowImages missing alt text34 of 120 images have empty alt attributesAdd descriptive alt text with relevant keywords

Best Practices

  • Write for humans first, search engines second. Keyword stuffing degrades user experience and triggers ranking penalties. Aim for natural keyword integration at 1–2% density.
  • Prioritize Core Web Vitals. Google uses LCP, FID, and CLS as direct ranking signals. Compress images, defer non-critical JS, and set explicit dimensions on media elements.
  • Use self-referencing canonical tags on every page. This prevents duplicate content issues caused by URL parameters, trailing slashes, or session IDs.
  • Build topical authority through internal linking. Link related content in clusters around pillar pages. Use descriptive anchor text instead of generic "click here" links.
  • Validate structured data with Google's Rich Results Test. Incorrect schema can result in manual actions. Always match schema fields to visible on-page content.
  • Monitor changes in Search Console weekly. Track impressions, clicks, average position, and coverage errors after deploying SEO fixes to measure impact.

Edge Cases

  • Single-page applications (SPAs): JavaScript-rendered content may not be crawled. Implement server-side rendering (SSR) or dynamic rendering, and use the URL Inspection tool to verify Google sees the full DOM.
  • Multilingual sites: Each language version needs its own unique title, meta description, and hreflang annotations. Incorrect hreflang mappings can cause the wrong language to appear in SERPs.
  • Paywalled or gated content: Use <meta name="robots" content="noindex"> on pages that require login to avoid thin-content penalties, or implement structured data for paywalled content per Google's guidelines.
  • Pagination: Use rel="next" and rel="prev" on paginated archives, and ensure the canonical points to the current page rather than page 1.
  • Rapidly changing content: For news or e-commerce sites with frequent inventory changes, configure sitemap update frequency and use the Indexing API for time-sensitive pages.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.94%
按下载量换算23

Claude

31.41%
按下载量换算19

Cursor

16.95%
按下载量换算11

Gemini CLI

8.32%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills