Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

seo-technical-auditSEO technical 审核

Agent Skill

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

总安装

282

周安装

12

GitHub Stars

28

下载量

99
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/mangollc/claude-seo-skill --skill seo-technical-audit

简介

用于辅助安全审计、权限检查、凭据风险和认证流程排查。

  • 适合让 Agent 梳理敏感配置、检查依赖风险或生成安全复核清单。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认最小权限和操作边界。
  • 不能将工具输出直接作为最终结论,涉及密钥或用户数据时应先脱敏处理。
  • 使用前应评估是否会触发文件读写或网络请求,避免影响生产系统稳定性。

SKILL.md

Technical SEO Audit

Load client context first. See seo-keywords rules/client-setup.md.

File Organization

technical/
├── audit-{date}.json              # Full audit results
├── sitemap-urls.txt               # All discovered URLs
├── homepage.md                    # Homepage content
├── crawl-data/                    # Raw crawl data
├── schema-markup/                 # Generated JSON-LD files
│   ├── homepage.jsonld
│   └── {page-slug}.jsonld
├── core-web-vitals-{date}.json    # CWV results
├── internal-links.json            # Link graph
├── cannibalization.json           # Cannibalization report
└── speed-audit-{date}.json        # Speed optimization report

Full Audit Workflow

Run these sub-audits in parallel where possible, then compile into a single scored report.

1. Crawlability & URL Discovery

# Discover all URLs
firecrawl map {domain} -o .seo/clients/{slug}/technical/sitemap-urls.txt

# Check robots.txt
curl -sI "{domain}/robots.txt" -o .seo/clients/{slug}/technical/crawl-data/robots-headers.txt
firecrawl scrape "{domain}/robots.txt" -o .seo/clients/{slug}/technical/crawl-data/robots.txt

# Check XML sitemap
firecrawl scrape "{domain}/sitemap.xml" -o .seo/clients/{slug}/technical/crawl-data/sitemap.xml

Check for:

  • Robots.txt blocks important pages
  • Sitemap exists and is referenced in robots.txt
  • Sitemap URLs match crawled URLs (missing pages = orphans or blocked)
  • Status codes: sample 20-30 URLs with curl -sI -o /dev/null -w "%{http_code}" {url}
  • Redirect chains: follow redirects with curl -sIL {url} — flag chains > 2 hops

2. HTTP Headers Audit

For homepage + 5-10 key pages:

curl -sI "{url}" -o .seo/clients/{slug}/technical/crawl-data/headers-{slug}.txt

Check for:

  • X-Robots-Tag — any noindex/nofollow directives in headers
  • Link: <url>; rel="canonical" — HTTP canonical vs HTML canonical conflicts
  • Content-Type — proper charset (UTF-8)
  • Cache-Control / Expires — caching configured
  • Strict-Transport-Security — HTTPS enforcement
  • Content-Security-Policy — security header present
  • Redirect type: 301 (permanent) vs 302 (temporary) — 302s waste link equity

3. Meta Tags Audit

Scrape 10-20 key pages:

firecrawl scrape {url} --format markdown,links -o .seo/clients/{slug}/technical/crawl-data/page-{slug}.json

For each page check:

Meta TagCheckIssue If
<title>Length 50-60 chars, keyword present, uniqueMissing, too long/short, duplicate
<meta name="description">Length 120-155 chars, keyword, CTAMissing, too long/short, duplicate
<link rel="canonical">Self-referencing, matches actual URLMissing, points elsewhere, conflicts
<meta name="robots">noindex/nofollow directivesAccidentally blocking important pages
<meta property="og:title">Present, matches titleMissing for shareable pages
<meta property="og:description">Present, compellingMissing for shareable pages
<meta property="og:image">Present, proper dimensionsMissing (no social preview)
<meta name="twitter:card">Present (summary_large_image)Missing Twitter Card data
<link rel="alternate" hreflang>Correct language codes, reciprocalWrong codes, missing return tags
<meta name="viewport">Present with width=device-widthMissing (not mobile-friendly)

4. Schema Markup Validation

Scrape page HTML to find existing structured data:

firecrawl scrape {url} --html -o .seo/clients/{slug}/technical/crawl-data/html-{slug}.html

Check for:

  • JSON-LD blocks in <script type="application/ld+json">
  • Microdata attributes (itemscope, itemtype, itemprop)
  • Valid schema.org types for page type
  • Required properties present for each schema type
  • No errors that would prevent rich results

5. JSON-LD Generation

Generate schema markup based on page type. Save to schema-markup/ directory.

LocalBusiness:

{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "{business_name}",
  "image": "{logo_url}",
  "address": { "@type": "PostalAddress", "streetAddress": "", "addressLocality": "", "addressRegion": "", "postalCode": "" },
  "telephone": "{phone}",
  "url": "{domain}",
  "openingHours": "Mo-Fr 08:00-17:00",
  "priceRange": "$$",
  "sameAs": ["{social_urls}"]
}

Article:

{
  "@context": "https://schema.org",
  "@type": "Article",
  "headline": "{title}",
  "author": { "@type": "Person", "name": "{author}" },
  "datePublished": "{date}",
  "dateModified": "{modified_date}",
  "publisher": { "@type": "Organization", "name": "{brand}", "logo": { "@type": "ImageObject", "url": "{logo}" } },
  "image": "{featured_image}",
  "description": "{meta_description}"
}

FAQPage:

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

Also generate when appropriate: Product, HowTo, BreadcrumbList, WebSite (with SearchAction), Organization, Review/AggregateRating.

6. Internal Linking Analysis

# Get links from key pages
firecrawl scrape {url} --format links -o .seo/clients/{slug}/technical/crawl-data/links-{slug}.json

Repeat for homepage + top 20 pages. Build a link graph and check:

  • Orphan pages: pages with 0 internal links pointing to them
  • Link depth: pages should be reachable within 3 clicks from homepage
  • Link distribution: flag pages with < 3 internal links or > 100
  • Anchor text: over-optimized (same exact-match anchor) vs descriptive
  • Broken internal links: 404s found in link extraction
  • Nofollow on internal links: shouldn't nofollow your own pages

7. Core Web Vitals

If PageSpeed Insights API key is available:

curl -s "https://www.googleapis.com/pagespeedonline/v5/runPagespeed?url={url}&strategy=mobile&key={api_key}" -o .seo/clients/{slug}/technical/crawl-data/psi-{slug}.json

If no API key, instruct user to get one (free) at https://developers.google.com/speed/docs/insights/v5/get-started.

Metrics to extract:

  • LCP (Largest Contentful Paint): Good < 2.5s, Poor > 4.0s
  • CLS (Cumulative Layout Shift): Good < 0.1, Poor > 0.25
  • INP (Interaction to Next Paint): Good < 200ms, Poor > 500ms
  • FCP (First Contentful Paint): Good < 1.8s
  • TTFB (Time to First Byte): Good < 800ms

8. Page Speed Optimization Playbook

Based on CWV results, provide specific fixes:

IssueFixImpact
Render-blocking CSS/JSInline critical CSS, defer non-critical JS, use async/defer attributesHigh (LCP)
Unoptimized imagesConvert to WebP/AVIF, add width/height attributes, use responsive srcset, lazy-load below-foldHigh (LCP, CLS)
No font display swapAdd font-display: swap to @font-face, preload key fontsMedium (LCP, CLS)
Third-party script bloatAudit and remove unused scripts, defer analytics/chat widgetsMedium (INP)
No server cachingSet Cache-Control headers, enable CDNMedium (TTFB)
Large DOM sizeSimplify markup, virtualize long listsMedium (INP)
Layout shiftsSet explicit dimensions on images/ads/embeds, avoid inserting content above foldHigh (CLS)
No compressionEnable gzip/brotli compressionMedium (TTFB)

9. Image Optimization Audit

From scraped pages, check all <img> tags:

  • Alt text: present on all images, descriptive (not "image1.jpg")
  • File format: using modern formats (WebP, AVIF) vs legacy (PNG, JPG)
  • Dimensions: width and height attributes set (prevents CLS)
  • Lazy loading: loading="lazy" on below-fold images
  • Responsive: srcset attribute for different screen sizes
  • File size: flag images likely > 200KB without compression

10. Mobile Friendliness

Check from scraped HTML:

  • <meta name="viewport" content="width=device-width, initial-scale=1"> present
  • No fixed-width elements (tables, iframes without responsive wrapper)
  • Font sizes readable (base >= 16px)
  • Tap targets adequate (buttons/links >= 48px)
  • No horizontal scroll indicators

11. SERP Feature Eligibility

For each key page, assess which rich results it could qualify for:

Rich ResultRequirementsPage Types
FAQFAQPage schema, Q&A contentService, product, blog
How-ToHowTo schema, step-by-step contentTutorial, guide
Review StarsAggregateRating schemaProduct, service
BreadcrumbsBreadcrumbList schemaAll pages
Sitelinks SearchWebSite + SearchAction schemaHomepage
VideoVideoObject schema, embedded videoBlog, tutorial
ProductProduct schema with price, availabilityProduct pages

12. Crawl Budget Analysis

From the full URL list, identify pages wasting crawl budget:

  • Thin content: pages with < 300 words (scrape sample to estimate)
  • Duplicate content: URLs that are parameter variants of the same page
  • Faceted navigation: filter/sort URLs creating combinatorial explosion
  • Tag/category pages: low-value taxonomy pages
  • Pagination: proper rel=next/prev or load-more implementation

Recommend: noindex tag pages, consolidate thin content, use canonical tags for parameter URLs, implement robots.txt blocks for faceted navigation.

13. International SEO / Hreflang

If client has languages or regions in config:

  • Check all pages for <link rel="alternate" hreflang="x-default"> tag
  • Verify hreflang values match ISO 639-1 (language) and ISO 3166-1 (region) codes
  • Confirm reciprocal tags (if page A references page B, page B must reference page A)
  • Check URL structure: recommend subdirectory (/en/, /fr/) over subdomain or ccTLD for most cases
  • Verify <html lang=""> attribute matches page language
  • Check for missing return tags (most common hreflang error)

14. Cannibalization Detection

Compare all indexed pages to identify keyword overlap:

# Get all page titles from sitemap
firecrawl scrape {url} --format markdown -o .seo/clients/{slug}/technical/crawl-data/page-{n}.md

Detection method:

  1. Extract title tag and H1 from each page
  2. Identify pages with similar/identical title keywords
  3. Search Google for those keywords via firecrawl and check if multiple client pages appear
  4. If 2+ pages from the same domain rank for the same query = cannibalization

Recommendations per case:

  • Merge: if both pages are thin, combine into one comprehensive page with 301 redirect
  • Differentiate: if pages serve different intents, adjust titles/content to target distinct keywords
  • Canonical: if one is clearly stronger, canonical the weaker to the stronger

Scoring

Calculate overall technical SEO health score (0-100):

CategoryWeightChecks
Crawlability15Robots.txt, sitemap, status codes, redirect chains
Meta Tags15Title, description, canonical, OG, robots
Schema Markup10Valid JSON-LD, appropriate types, required properties
Internal Linking15Orphan pages, link depth, anchor text, broken links
Core Web Vitals15LCP, CLS, INP scores
Image Optimization10Alt text, format, lazy loading, dimensions
Mobile10Viewport, responsive, tap targets, font sizes
Security5HTTPS, HSTS, CSP headers
Internationalization5Hreflang (if applicable, otherwise redistribute)

Output: overall score, category scores, prioritized fix list with effort (low/medium/high) and impact (low/medium/high) for each issue.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.33%
按下载量换算36

Claude

26.89%
按下载量换算27

Cursor

17.63%
按下载量换算17

Gemini CLI

10.38%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills