Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

seo-audit-botSEO 审核机器人

Agent Skill

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

总安装

2,916

周安装

124

GitHub Stars

公开资料未说明

下载量

1,022
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install seo-audit-bot

简介

SEO 审核机器人对网站进行技术 SEO、性能与内容质量全面检查。

  • 适合在 OpenClaw 中快速定位 SEO 问题并生成可执行改进清单时使用。
  • 通过 clawhub 安装并使用 openclaw skills install seo-audit-bot 命令部署。
  • 需确认目标站点可访问性,避免因爬虫限制导致报告不完整。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
seo-audit-bot
description
Perform a comprehensive SEO audit of any website. Analyzes technical SEO, on-page factors, content quality, performance, and generates an actionable report with scores and recommendations. Use when someone asks to audit, analyze, or check the SEO of a website, or wants an SEO score, or wants to compare SEO between two sites.

SEO Audit Bot

A comprehensive SEO auditing skill that analyzes any website and produces a detailed, actionable report.

What It Does

When a user provides a URL, this skill performs a full SEO audit covering:

  1. Technical SEO — robots.txt, sitemap, HTTPS, mobile-friendliness, page speed signals
  2. On-Page SEO — title tags, meta descriptions, headings, URL structure, internal linking
  3. Content Analysis — word count, keyword density, readability, duplicate content signals
  4. Performance — page load indicators, Core Web Vitals signals
  5. Social & Sharing — Open Graph tags, Twitter Cards, structured data
  6. Competitor Comparison (optional) — compare against a competitor URL

How to Use

Basic Audit

User says: "Audit the SEO of https://example.com"

Agent should:

  1. Fetch the target URL using web_fetch
  2. Fetch the robots.txt (/robots.txt)
  3. Fetch the sitemap (/sitemap.xml or from robots.txt)
  4. Analyze the HTML content for all SEO factors
  5. Generate a structured report

Competitor Comparison

User says: "Compare SEO of https://example.com vs https://competitor.com"

Agent should:

  1. Audit both URLs
  2. Generate a side-by-side comparison
  3. Highlight advantages and gaps

Audit Process

Step 1: Fetch the Page

web_fetch(url="<target_url>", maxChars=50000, extractMode="text")

Step 2: Check Technical Signals

  • Fetch robots.txt → check if exists, what's blocked
  • Fetch sitemap.xml → check if exists, last modified
  • Check HTTPS redirect
  • Check canonical tag presence

Step 3: Analyze On-Page Elements

Extract and evaluate:

  • <title> — length (50-60 chars ideal), keyword presence
  • <meta name="description"> — length (150-160 chars ideal), keyword presence
  • <h1> — single h1, contains primary keyword
  • <h2><h6> — proper hierarchy
  • URL structure — short, descriptive, keyword-rich
  • Image alt tags — descriptive, not keyword-stuffed
  • Internal links — count, quality, anchor text
  • External links — count, quality, nofollow usage

Step 4: Content Analysis

  • Word count (minimum 300 for pages, 1000+ for blog posts)
  • Keyword density (1-3% for primary keyword)
  • Heading structure (logical hierarchy)
  • Readability (sentence length, paragraph size)
  • Duplicate content risk

Step 5: Performance Indicators

  • Check for <meta name="viewport"> (mobile-friendly)
  • Check for lazy loading on images
  • Check for minified CSS/JS references
  • Check for CDN usage
  • Check for excessive inline styles

Step 6: Social & Schema

  • Open Graph tags (og:title, og:description, og:image)
  • Twitter Card tags
  • JSON-LD structured data
  • Schema.org markup

Step 7: Generate Report

Report Format

# SEO Audit Report: [URL]
Date: [date]

## Overall Score: XX/100

### 🔧 Technical SEO: XX/100
- ✅ HTTPS enabled
- ✅ robots.txt found
- ❌ No sitemap.xml found
- ✅ Mobile viewport configured
- ⚠️ Missing canonical tag

Recommendations:
1. Create and submit a sitemap.xml
2. Add canonical tags to prevent duplicate content

### 📄 On-Page SEO: XX/100
- ✅ Title tag (52 chars) — Good
- ⚠️ Meta description (180 chars) — Too long, aim for 150-160
- ❌ No H1 tag found
- ✅ URL structure is clean
- ⚠️ 3 images missing alt tags

Recommendations:
1. Add a clear H1 tag with primary keyword
2. Shorten meta description to 150-160 characters
3. Add alt tags to all images

### 📝 Content: XX/100
- Word count: 450 words
- Primary keyword density: 1.2%
- Heading structure: Proper H2/H3 hierarchy
- Readability: Good (avg 15 words/sentence)

Recommendations:
1. Expand content to 800+ words for better ranking potential

### ⚡ Performance: XX/100
- Viewport meta: ✅
- Lazy loading: ⚠️ Partial
- Minified assets: ✅
- CDN: ❌ Not detected

### 📱 Social & Schema: XX/100
- Open Graph: ✅ Complete
- Twitter Cards: ⚠️ Missing
- JSON-LD: ❌ Not found

Recommendations:
1. Add Twitter Card meta tags
2. Implement JSON-LD structured data for rich snippets

## 🎯 Priority Actions (Do These First)
1. [HIGH] Add H1 tag with primary keyword
2. [HIGH] Create sitemap.xml
3. [MEDIUM] Implement JSON-LD structured data
4. [LOW] Add Twitter Card tags

Scoring Rubric

Each section is scored 0-100:

Technical SEO (25% weight)

  • HTTPS: 15 points
  • robots.txt: 10 points
  • sitemap.xml: 15 points
  • Mobile viewport: 15 points
  • Canonical tag: 10 points
  • Clean URL structure: 10 points
  • Page speed indicators: 15 points
  • No broken links: 10 points

On-Page SEO (30% weight)

  • Title tag (exists, length, keyword): 20 points
  • Meta description (exists, length, keyword): 20 points
  • H1 tag (exists, unique, keyword): 20 points
  • Heading hierarchy: 10 points
  • Image alt tags: 15 points
  • Internal linking: 15 points

Content (25% weight)

  • Word count: 25 points
  • Keyword presence & density: 25 points
  • Readability: 25 points
  • Content structure: 25 points

Performance (10% weight)

  • Mobile-friendly: 30 points
  • Asset optimization: 30 points
  • Loading indicators: 40 points

Social & Schema (10% weight)

  • Open Graph: 40 points
  • Twitter Cards: 30 points
  • Structured data: 30 points

Overall Score = weighted average of all sections.

Tips for the Agent

  1. Be specific — don't just say "improve SEO", say exactly what to change
  2. Prioritize — label recommendations as HIGH/MEDIUM/LOW
  3. Show before/after — when suggesting changes, show the current state and the ideal state
  4. Be honest about limitations — you can't check page speed directly, only indicators
  5. Offer follow-up — suggest re-audit after changes are made

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

83.71%
按下载量换算856

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills