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

seo-analyzerSEO 分析器

Agent Skill

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

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/loo-y/seo-analyzer-skill --skill seo-analyzer

简介

seo-analyzer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位结果。

  • 它可协助 Agent 按来源线索组织候选信息。
  • 使用时需结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

SEO Analyzer Skill

基于 Google 官方文档的 SEO 自动检测工具。自动分析网址的技术 SEO、内容元数据、性能体验和链接结构,输出符合 Google 最佳实践的检测报告。

使用方法

自动模式 (推荐)

只需告诉 agent 检查某个 URL,skill 会自动完成所有工作:

python skills/seo-analyzer/scripts/seo_analyzer.py --auto <url>

Skill 会自动:

  1. 检查 agent-browser 是否已安装
  2. 如果已安装,调用 agent-browser 获取页面内容
  3. 执行完整的 SEO 检查
  4. 生成详细的检测报告

手动模式

如果 agent-browser 未安装,可以使用手动模式:

# 方式1: 从文件分析
python skills/seo-analyzer/scripts/seo_analyzer.py page.html <url>

# 方式2: 从 stdin 读取 (需要先手动获取 HTML)
agent-browser get source > page.html
python seo_analyzer.py page.html <url>

对于 Agent 的调用方式

当用户请求分析某个 URL 时:

# 使用自动模式
python skills/seo-analyzer/scripts/seo_analyzer.py --auto https://example.com

Agent 内部会:

  1. 调用 check_agent_browser_available() 检查 agent-browser
  2. 如果可用,调用 fetch_page_with_agent_browser(url) 获取页面
  3. 如果不可用,提示用户安装 agent-browser
  4. 调用 analyze_page() 执行 SEO 分析
  5. 输出格式化报告

Alternative - save to file first:

# Step 1: Open page
agent-browser open <url> --timeout 30000

# Step 2: Save HTML to file
agent-browser get source > /tmp/page.html

# Step 3: Run analysis
python skills/seo-analyzer/scripts/seo_analyzer.py /tmp/page.html <url>

Command-line Options

# Analyze HTML file
python skills/seo-analyzer/scripts/seo_analyzer.py page.html https://example.com

# Read from stdin (pipe from agent-browser)
agent-browser get source | python skills/seo_analyzer.py - https://example.com

# Output in JSON format (for programmatic use)
python seo_analyzer.py page.html https://example.com --json

Workflow

  1. Crawl the URL - Use agent-browser to load the page and capture HTML
  2. Extract page content - Use agent-browser get source to get HTML
  3. Run SEO checks - Pass HTML to seo_analyzer.py for evaluation
  4. Generate report - Output findings with severity levels and recommendations

For Agents: How to Analyze a URL

When asked to analyze a website's SEO, follow these steps:

# 1. Open the URL with agent-browser
agent-browser open <target_url> --timeout 30000

# 2. Get the HTML source from the browser
agent-browser get source > /tmp/target_page.html

# 3. Run the SEO analyzer
python skills/seo-analyzer/scripts/seo_analyzer.py /tmp/target_page.html <target_url>

Or as a single command:

agent-browser open <target_url> --timeout 30000 && agent-browser get source | python skills/seo-analyzer/scripts/seo_analyzer.py - <target_url>

agent-browser open --timeout 30000

### Step 2: Extract the page HTML
After the page loads, get the HTML content:

agent-browser get source

Or use get text to extract visible content:

agent-browser get text "body"

### Step 3: Save HTML to file and run analysis
Write the HTML to a file, then run the analyzer:

Save HTML content to a file

echo "<html>...</html>" > /tmp/page.html

Run the SEO analyzer

python skills/seo-analyzer/scripts/seo_analyzer.py /tmp/page.html <url>


### Integrated workflow (recommended)

Use stdin to pass HTML directly:

agent-browser get source | python skills/seo-analyzer/scripts/seo_analyzer.py - <url>


## Alternative: Analyze existing HTML file

If you already have HTML content saved:

python skills/seo-analyzer/scripts/seo_analyzer.py /path/to/page.html https://example.com/page


## Check Categories

### 1. Technical Requirements (搜索要素/技术要求)

- HTTP status code (must be 200)
- Googlebot accessibility
- Indexable content presence
- HTTPS usage
- robots.txt blocking detection
- noindex directive check

### 2. Title Tag (标题链接)

- Presence of `<title>` element
- Uniqueness across pages
- Descriptive, non-generic text
- Avoid keyword stuffing
- Proper length (not truncated)
- Brand inclusion if appropriate

### 3. Meta Description (片段)

- Presence of `<meta name="description">`
- Unique per page
- Descriptive, summarizes content
- Not keyword-stuffed
- Appropriate length

### 4. Headings Structure (SEO新手指南)

- H1 presence and uniqueness
- Logical heading hierarchy (H1→H2→H3)
- Heading text is descriptive
- Content is organized with headings

### 5. Link Accessibility (链接)

- Links use `<a href="...">` format
- Anchor text is descriptive
- No empty links
- No excessive link clustering
- External links use appropriate rel attributes (nofollow, sponsored, ugc)

### 6. Image Optimization (图像)

- Images have alt attributes
- Alt text is descriptive
- Images are near relevant content

### 7. Structured Data (结构化数据)

- JSON-LD, Microdata, or RDFa presence
- Valid schema.org types
- Required properties for supported types
- Content is visible to users
- Not blocked by robots.txt or noindex

### 8. URL Structure (网址结构)

- Descriptive URLs (not random IDs)
- Human-readable
- Logical directory structure
- Uses hyphens, not underscores

### 9. Canonical URL (规范化)

- Canonical tag presence
- Points to preferred URL
- HTTPS preferred over HTTP
- Consistent with actual URL

### 10. Content Quality (创建实用可靠以用户为中心的内容)

- Unique, original content
- Well-written, readable text
- No spelling/grammar errors
- Content is current/updated
- Provides value to users

### 11. Mobile-Friendliness (移动网站)

- Mobile-compatible design
- Touch-friendly elements
- Readable without zooming

### 12. Core Web Vitals (Core Web Vitals)

- LCP < 2.5s
- INP < 200ms
- CLS < 0.1 (Note: Requires JavaScript runtime measurement)

## Report Format

SEO Analysis Report

URL: <analyzed url> Timestamp: <analysis time>

Summary

  • Total Issues: <count>
  • Critical: <count>
  • Warnings: <count>
  • Passed: <count>

Critical Issues

  1. [Issue name]

- Description - Location: <HTML element/selector> - Recommendation - Reference: seo-docs/<category>/<file>.md

Warnings

  1. [Issue name]

- ...

Passed Checks

  • [Check name]

## Recommendations Priority

1. **Critical**: Must fix (blocks indexing/ranking)
2. **Warning**: Should fix (impacts performance)
3. **Info**: Nice to have (improves appearance)

## Reference Documents

Key seo-docs for SEO analysis:

- `seo基础知识/seo新手指南.md` - General SEO best practices
- `搜索要素/技术要求.md` - Technical requirements
- `排名和搜索结果呈现/标题链接.md` - Title tag guidelines
- `排名和搜索结果呈现/片段.md` - Meta description guidelines
- `排名和搜索结果呈现/结构化数据/了解结构化数据的工作方式.md` - Structured data
- `抓取和编入索引/链接.md` - Link accessibility
- `抓取和编入索引/规范化/如何使用relcanonical.md` - Canonical URLs
- `抓取和编入索引/robots.txt/概览.md` - robots.txt rules
- `排名和搜索结果呈现/网页体验/Core Web Vitals.md` - Core Web Vitals

## Limitations

- Cannot measure Core Web Vitals without JavaScript runtime
- Cannot verify if page is actually indexed in Google
- Cannot access server configuration (SSL, redirects)
- Content quality assessment is heuristic-based
- Mobile-friendliness is approximate without device simulation

## Integration with agent-browser

When analyzing a page:

1. Open page: `agent-browser open <url> --timeout 30000`
2. Get HTML: Use browser's get source function
3. Parse and analyze using SEO rules from seo-docs
4. Report findings with specific element selectors for fixes

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Gemini CLI

26.72%
按下载量换算42

Claude Code

25.16%
按下载量换算40

Antigravity

18.2%
按下载量换算29

windsurf

12.23%
按下载量换算19

Codex

7.91%
按下载量换算12

OpenCode

3.84%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills