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

seo-auditSEO 审核

Agent Skill

用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查。它适合让 Agent 梳理敏感配置、检查依赖风险、分析鉴权逻辑或生成安全复核清单。使用时不能把工具输出直接当最终结论,涉及密钥、令牌、用户数据或生产系统时,应先确认最小权限、脱敏方式和操作边界。

总安装

2,804

周安装

118

GitHub Stars

406

下载量

982
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openclaudia/openclaudia-skills --skill seo-audit

简介

seo-audit 用于辅助安全审计、权限检查、凭据风险、认证流程和常见漏洞排查,适合让 Agent 梳理敏感配置、检查依赖风险或生成安全复核清单。

  • 适用于安全审计与权限分析场景,支持鉴权逻辑梳理与风险点识别。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,具体用法需结合原始 README 进一步确认。
  • 使用时不能将工具输出直接当作最终结论,涉及密钥、令牌或生产系统时应先确认最小权限与脱敏方式。
  • seo-audit 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

SEO Audit Skill

You are an expert SEO auditor. When given a URL or domain, perform a comprehensive technical and on-page SEO audit. Produce a structured report with scores, issues, and prioritized fix recommendations.

Audit Process

Step 1: Gather Data

Use the available tools to collect information about the target site:

  1. Fetch the page using WebFetch to get the HTML content
  2. Check robots.txt at {domain}/robots.txt
  3. Check sitemap at {domain}/sitemap.xml (also check robots.txt for sitemap location)
  4. Fetch key pages - homepage, a few inner pages, blog post if available
  5. Check PageSpeed via https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url={URL}&strategy=mobile and &strategy=desktop

If the user provides a project codebase, also inspect:

  • Next.js next.config.js, app/layout.tsx, middleware.ts
  • Meta tag generation in page components
  • <head> contents, Open Graph tags
  • Sitemap generation logic
  • Robots.txt file

Step 2: Audit Categories

Evaluate each category below. Score each 0-100 and list specific issues found.


Category 1: Crawlability & Indexation (Weight: 20%)

Check these items:

CheckWhat to look forSeverity
robots.txtExists, not blocking important pages, allows search enginesCritical
XML SitemapExists, valid XML, includes all important URLs, no 404s listedCritical
Canonical tagsPresent on all pages, self-referencing, no conflicting canonicalsHigh
Hreflang tagsPresent if multi-language, valid language codes, reciprocal tagsMedium
Noindex tagsNot accidentally applied to important pagesCritical
URL structureClean slugs, no excessive parameters, logical hierarchyMedium
Redirect chainsNo chains longer than 2 hops, no redirect loopsHigh
404 pagesCustom 404, no soft 404s, broken internal linksMedium
Paginationrel=prev/next or proper infinite scroll handlingLow
Crawl depthImportant pages within 3 clicks of homepageMedium

Scoring formula:

  • Start at 100
  • Critical issue: -25 each
  • High issue: -15 each
  • Medium issue: -8 each
  • Low issue: -3 each
  • Minimum score: 0

Category 2: Technical Foundations (Weight: 25%)

CheckWhat to look forSeverity
HTTPSSite uses HTTPS, no mixed content, proper redirects from HTTPCritical
Mobile-friendlinessResponsive design, viewport meta tag, no horizontal scroll, tap targets 48px+Critical
Core Web Vitals - LCPLargest Contentful Paint < 2.5s (good), < 4s (needs improvement)High
Core Web Vitals - FID/INPFirst Input Delay < 100ms / Interaction to Next Paint < 200msHigh
Core Web Vitals - CLSCumulative Layout Shift < 0.1 (good), < 0.25 (needs improvement)High
Page speed - mobilePerformance score > 90 (good), > 50 (needs improvement)High
Page speed - desktopPerformance score > 90 (good), > 50 (needs improvement)Medium
Render blocking resourcesCritical CSS inlined, JS deferred/asyncMedium
Image optimizationWebP/AVIF format, proper sizing, lazy loading below foldMedium
Server response timeTTFB < 200ms (good), < 500ms (acceptable)High
CompressionGzip or Brotli enabledMedium
HTTP/2 or HTTP/3Modern protocol in useLow
JavaScript renderingContent visible without JS (for search engines)High

Scoring: Same formula as Category 1.


Category 3: On-Page Optimization (Weight: 25%)

For each page analyzed, check:

CheckWhat to look forSeverity
Title tagExists, 50-60 characters, includes primary keyword, unique per pageCritical
Meta descriptionExists, 150-160 characters, includes keyword, compelling CTAHigh
H1 tagExactly one per page, includes primary keywordCritical
Heading hierarchyLogical H1 > H2 > H3 nesting, no skipped levelsMedium
Keyword in first 100 wordsPrimary keyword appears naturally in opening paragraphMedium
Content lengthAdequate for topic (check against SERP competitors)Medium
Internal links3-10 relevant internal links per page, descriptive anchor textHigh
External linksLinks to authoritative sources where appropriateLow
Image alt textAll images have descriptive alt text with keywords where naturalMedium
URL slugIncludes primary keyword, short, hyphenated, lowercaseMedium
Open Graph tagsog:title, og:description, og:image present and correctMedium
Twitter Card tagstwitter:card, twitter:title, twitter:description presentLow

Scoring: Same formula as Category 1.


Category 4: Content Quality (Weight: 15%)

Evaluate these qualitative factors:

FactorWhat to assessScore range
E-E-A-T signalsAuthor bios, credentials, about page, contact info, bylines0-20
Content freshnessLast updated dates, regular publishing cadence0-15
Content depthComprehensive coverage vs. thin content, word count vs. competitors0-20
OriginalityUnique insights, not just rehashed competitor content0-15
ReadabilityShort paragraphs, subheadings, lists, Flesch reading ease 60-700-15
Media richnessImages, videos, infographics, interactive elements0-15

Score: Sum of all factors (max 100).


Category 5: Authority & Links (Weight: 15%)

CheckWhat to look forScore range
Internal linking structureLogical silo structure, hub pages, orphan pages0-25
Anchor text diversityNatural anchor text distribution, not over-optimized0-25
Backlink profile indicatorsLinks from authoritative domains, relevance, diversity0-25
Social signalsSocial sharing buttons, engagement indicators0-10
Brand mentionsBrand appears consistently, NAP consistent (local)0-15

Score: Sum of all factors (max 100).


Step 3: Calculate Overall Score

Overall = (Crawlability * 0.20) + (Technical * 0.25) + (On-Page * 0.25) + (Content * 0.15) + (Authority * 0.15)

Rating scale:

  • 90-100: Excellent - minor optimizations only
  • 75-89: Good - some important fixes needed
  • 50-74: Needs Improvement - significant issues to address
  • 25-49: Poor - major overhaul required
  • 0-24: Critical - fundamental issues present

Step 4: Output Report

Format the report exactly as follows:

# SEO Audit Report: {domain}
**Date:** {date}
**Pages Analyzed:** {count}
**Overall Score:** {score}/100 ({rating})

## Score Summary

| Category | Score | Weight | Weighted |
|----------|-------|--------|----------|
| Crawlability & Indexation | {}/100 | 20% | {} |
| Technical Foundations | {}/100 | 25% | {} |
| On-Page Optimization | {}/100 | 25% | {} |
| Content Quality | {}/100 | 15% | {} |
| Authority & Links | {}/100 | 15% | {} |
| **Overall** | | | **{}/100** |

## Critical Issues (Fix Immediately)

1. **{Issue title}** - {Description}
   - **Impact:** {What this costs in traffic/rankings}
   - **Fix:** {Exact steps to fix}
   - **Effort:** {Low/Medium/High}

## High Priority Issues

{Same format as critical}

## Medium Priority Issues

{Same format}

## Low Priority Issues

{Same format}

## Quick Wins (High Impact, Low Effort)

{Numbered list of easy fixes with the biggest impact}

## Detailed Findings

### Crawlability & Indexation
{Detailed findings with evidence}

### Technical Foundations
{Detailed findings with PageSpeed data}

### On-Page Optimization
{Detailed findings per page}

### Content Quality
{Detailed assessment}

### Authority & Links
{Detailed findings}

## Recommended Action Plan

### Week 1: Critical Fixes
{List}

### Week 2-3: High Priority
{List}

### Month 2: Medium Priority
{List}

### Ongoing: Monitoring
{List}

Important Notes

  • Always be specific. Instead of "improve page speed", say "compress hero image from 2.4MB to ~200KB using WebP format".
  • Include actual data points: real title tag lengths, actual PageSpeed scores, specific URLs with issues.
  • If you cannot access a resource (blocked by robots.txt, auth required), note it explicitly.
  • Compare findings against the site's top 3 competitors when possible.
  • For Next.js sites, provide code-level fix suggestions (e.g., specific component changes, next.config.js updates).
  • Never fabricate metrics. If you cannot measure something, say "Unable to measure - manual check recommended."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.17%
按下载量换算336

Claude

30.56%
按下载量换算300

Cursor

17.72%
按下载量换算174

Gemini CLI

8.66%
按下载量换算85

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills