Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

seo-metadata-auditSEO metadata 审核

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

343

周安装

14

GitHub Stars

35

下载量

111
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/simbajigege/book2skills --skill seo-metadata-audit

简介

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。

  • 适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。
  • 使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。
  • 安装命令:npx skills add https://github.com/simbajigege/book2skills --skill seo-metadata-audit。
  • 建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

SKILL.md

SEO Metadata Audit

Perform a structured audit of a webpage's HTML metadata against the 10 most important SEO meta tags. The framework is grounded in SearchEngineJournal and Google's official documentation.

For detailed per-tag audit checklists, scoring criteria, and common mistakes, read references/tag-reference.md.


Audit Workflow

Step 1 — Collect the Data

Ask for or extract the following from the provided URL, HTML source, or page description:

  • <title> tag content and character count
  • <meta name="description"> content and character count
  • All <h1> through <h6> tags
  • Image alt attributes (sample if many)
  • External link rel attributes
  • <meta name="robots"> tag
  • <link rel="canonical"> tag
  • Any <script type="application/ld+json"> blocks
  • Open Graph (og:*) meta tags
  • Twitter card meta tags
  • <meta name="viewport"> tag

If the user provides a URL, fetch the page to extract this data. If they provide HTML, parse it directly.

Step 2 — Score Each Tag

Read references/tag-reference.md for the full checklist per tag.

Rate each tag from 0 to its max score and calculate a total out of 46 possible points.

Score RangeGradeAssessment
40–46AExcellent — production ready
30–39BGood — minor fixes needed
20–29CFair — several important issues
10–19DPoor — significant gaps
0–9FCritical — metadata severely lacking

Step 3 — Generate the Audit Report

Use this exact structure:

# SEO Metadata Audit Report
## Page: [URL or Page Name]
## Date: [Date]

### Executive Summary
[2–3 sentence overview of key findings]

### Score: XX / 46 — Grade: [A/B/C/D/F]

### Tag-by-Tag Results

| Tag | Score | Status | Key Finding |
|---|---|---|---|
| Title | X/5 | ✅/⚠️/❌ | ... |
| Description | X/5 | ✅/⚠️/❌ | ... |
| Headings | X/5 | ✅/⚠️/❌ | ... |
| Image Alt | X/4 | ✅/⚠️/❌ | ... |
| Nofollow | X/4 | ✅/⚠️/❌ | ... |
| Robots | X/4 | ✅/⚠️/❌ | ... |
| Canonical | X/5 | ✅/⚠️/❌ | ... |
| Schema | X/5 | ✅/⚠️/❌ | ... |
| Social (OG/Twitter) | X/5 | ✅/⚠️/❌ | ... |
| Viewport | X/4 | ✅/⚠️/❌ | ... |

### Priority Fixes (Ordered by Impact)
1. [Highest impact issue]
2. [Second priority]
3. [Third priority]
...

### Detailed Findings & Recommendations
[Per tag: what was found, what should be done, example code if needed]

Step 4 — Provide Corrected Code

For any tag that fails or scores below 50% of its max, provide a corrected HTML snippet the user can copy directly into their page.


Key Principles

  1. Prioritize by ranking impact — Fix <title> and canonical before social tags
  2. Never keyword stuff — Natural language always wins over mechanical repetition
  3. Unique per page — Title, description, canonical, and OG tags must all be page-specific
  4. Test after changes — Recommend Google Search Console, Rich Results Test, and Mobile-Friendly Test for validation
  5. Mobile first — If viewport is missing, flag it as high priority regardless of other scores

Quick Cheat Sheet

<!-- 1. Title -->
<title>Primary Keyword - Secondary Topic | Brand Name</title>

<!-- 2. Description -->
<meta name="description" content="1–2 natural sentences describing the page. Include keywords naturally. Under 160 characters.">

<!-- 3. Headings — in HTML body -->
<h1>Primary Keyword Topic</h1>
<h2>Subtopic One</h2>
<h3>Sub-subtopic</h3>

<!-- 4. Image Alt -->
<img src="product.jpg" alt="Descriptive alt text with keyword where natural">

<!-- 5. Nofollow Links -->
<a href="https://external.com" rel="noopener noreferrer nofollow">Link Text</a>

<!-- 6. Robots (noindex example) -->
<meta name="robots" content="noindex, nofollow">

<!-- 7. Canonical -->
<link rel="canonical" href="https://example.com/this-page-url">

<!-- 8. Schema Markup -->
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Article",
  "name": "Article Title",
  "description": "Article description."
}
</script>

<!-- 9. Open Graph + Twitter Cards -->
<meta property="og:title" content="Page Title"/>
<meta property="og:description" content="Page description."/>
<meta property="og:url" content="https://example.com/page"/>
<meta property="og:type" content="website"/>
<meta property="og:image" content="https://example.com/image.jpg"/>
<meta property="og:image:alt" content="Image description"/>
<meta name="twitter:card" content="summary_large_image"/>
<meta name="twitter:title" content="Page Title"/>
<meta name="twitter:description" content="Page description."/>
<meta name="twitter:image" content="https://example.com/image.jpg"/>

<!-- 10. Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1"/>

Useful Tools

ToolURLPurpose
AITDK Extensionhttps://aitdk.com/zh-CN/extension/Free browser plugin: Title, Description, Headings, traffic
Detailed SEO Extensionhttps://detailed.com/extension/Check Canonical, OG tags, Robots, Schema
Google Rich Results Testhttps://search.google.com/test/rich-resultsValidate structured data
Google Mobile-Friendly Testhttps://search.google.com/test/mobile-friendlyCheck mobile optimization
Google Search Consolehttps://search.google.com/search-consoleMonitor indexing, coverage, and performance
Google Structured Data Markup Helperhttps://www.google.com/webmasters/markup-helper/Generate JSON-LD schema code

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.92%
按下载量换算41

Claude

25.77%
按下载量换算29

Cursor

18.57%
按下载量换算21

Gemini CLI

9.35%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills