seo-analytics
SEO 数据分析专家,擅长 Google Search Console、Google Analytics 数据分析、排名追踪和 ROI 计算。适用于 SEO 效果评估、策略调整和数据驱动决策时使用。
Best use case
seo-analytics is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
SEO 数据分析专家,擅长 Google Search Console、Google Analytics 数据分析、排名追踪和 ROI 计算。适用于 SEO 效果评估、策略调整和数据驱动决策时使用。
Teams using seo-analytics should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/06_SEO_Analytics/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How seo-analytics Compares
| Feature / Agent | seo-analytics | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
SEO 数据分析专家,擅长 Google Search Console、Google Analytics 数据分析、排名追踪和 ROI 计算。适用于 SEO 效果评估、策略调整和数据驱动决策时使用。
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
AI Agents for Marketing
Discover AI agents for marketing workflows, from SEO and content production to campaign research, outreach, and analytics.
Best AI Agents for Marketing
A curated list of the best AI agents and skills for marketing teams focused on SEO, content systems, outreach, and campaign execution.
SKILL.md Source
# SEO Analytics & Measurement
## Overview
帮助一人企业建立 SEO 数据分析体系,通过 Google Search Console、Google Analytics 和其他工具监控 SEO 效果,发现优化机会,实现数据驱动的 SEO 策略迭代。
## When to Use This Skill
- 设置 SEO 数据监控体系
- 分析 Google Search Console 数据
- 解读 Google Analytics 4 流量报告
- 评估 SEO ROI 和投资回报
- 识别低表现页面和优化机会
- 竞争对手 SEO 数据分析
- 制定 SEO KPI 和衡量标准
- 制作 SEO 周期性报告
## Core Concepts
### 1. Google Search Console (GSC) 分析
**关键报告解读:**
```
性能报告(Performance Report):
├── 总点击次数 (Total Clicks)
├── 总展示次数 (Total Impressions)
├── 平均 CTR (Average CTR)
├── 平均排名 (Average Position)
└── 时间趋势分析
索引报告(Index Coverage):
├── 有效页面
├── 发现但未索引
├── 被 robots 阻止
└── 手动操作警告
```
**GSC 数据分析方法:**
**方法一:发现机会关键词**
```markdown
1. 筛选条件:排名 7-20 位的关键词
2. 筛选条件:展示 > 100 次/月
3. 排序:按展示量降序
优化策略:
- 这些关键词"即将"进入首页
- 优化内容质量和内部链接
- 目标:进入前 3 位
```
**方法二:CTR 优化机会**
```markdown
识别标准:
- 排名 1-5 位但 CTR < 20%
- 可能原因:Title/Description 不吸引人
- 或页面类型与搜索意图不匹配
优化方向:
- 优化 Title Tag(更具吸引力的文案)
- 优化 Meta Description(加入数字/行动号召)
- 检查 Snippet 是否准确反映页面内容
```
**方法三:低曝光页面诊断**
```markdown
排查步骤:
1. 关键词覆盖是否充分?
2. 内容质量是否满足搜索意图?
3. 内部链接是否足够?
4. 页面是否被正确索引?
5. Core Web Vitals 是否达标?
```
### 2. Google Analytics 4 (GA4) 分析
**SEO 相关报告:**
```
流量获取报告:
├── 按渠道查看有机搜索流量
├── 用户获取campaign表现
└── 归因模型分析
用户行为报告:
├── 页面浏览量 (Pageviews)
├── 平均 engagement time
├── 跳出率 (Bounce Rate)
├── 滚动深度
└── 退出页面分析
转化报告:
├── 目标完成(Goal Completions)
├── 电子商务交易(如适用)
└── 关键事件追踪
```
**SEO 关键指标定义:**
```markdown
流量质量指标:
- Engagement Rate(参与率):> 60% 为良好
- 平均 Engagement Time:> 1 分钟为良好
- Bounce Rate:< 40% 为良好
- 页面/会话:> 2.0 为良好
转化指标:
- 有机流量转化率
- 有机流量价值
- 每用户平均收入(ARPU)
```
**GA4 事件追踪设置:**
```javascript
// 推荐追踪的 SEO 相关事件
// 滚动深度追踪
gtag('event', 'scroll_depth', {
'scroll_depth': '75%', // 25%, 50%, 75%, 100%
'page_location': window.location.pathname
});
// 外部链接点击追踪
document.querySelectorAll('a[href^="http"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'external_link_click', {
'link_url': this.href,
'page_location': window.location.pathname
});
});
});
// 文件下载追踪
document.querySelectorAll('a[href*=".pdf"], a[href*=".doc"]').forEach(link => {
link.addEventListener('click', function() {
gtag('event', 'file_download', {
'file_name': this.href.split('/').pop(),
'page_location': window.location.pathname
});
});
});
```
### 3. SEO ROI 计算
**成本核算:**
```markdown
SEO 投资成本项:
1. 人力成本(内容创作、技术优化时间)
2. 工具订阅费(Ahrefs/SEMrush/Moz 等)
3. 开发成本(技术 SEO 需要的开发工作)
4. 内容外包费用(如有)
5. 外部链接建设费用
计算公式:
总成本 = 人力成本 + 工具费用 + 开发成本 + 外包费用 + 链接建设
```
**收益核算:**
```markdown
SEO 收益来源:
1. 直接转化收益(通过有机流量产生的成交)
2. 品牌价值(品牌搜索量增长)
3. 减少付费广告支出(有机流量替代付费流量)
4. 长期资产价值(内容持续产生流量)
计算方法:
有机流量价值 = 有机流量 × 转化率 × 平均订单价值
```
**SEO ROI 公式:**
```markdown
ROI = (SEO收益 - SEO成本) / SEO成本 × 100%
示例:
- 月度 SEO 成本:5000 元(工具 + 外包内容)
- 有机流量带来月销售额:25000 元
- 替代付费广告节省:3000 元
- 月度总收益:28000 元
月度 ROI = (28000 - 5000) / 5000 × 100% = 460%
```
### 4. 竞争对手分析
**分析维度:**
```markdown
1. 关键词差距(Keyword Gap)
- 竞争对手排名但你未覆盖的关键词
- 高搜索量低竞争度机会关键词
2. 反向链接差距(Backlink Gap)
- 竞争对手有但你没有的链接
- 可复制的链接建设策略
3. 内容差距(Content Gap)
- 竞争对手覆盖但你缺失的主题
- 可以超越的内容质量对比
```
**Ahrefs/SEMrush 竞品分析流程:**
```markdown
1. 导入竞争对手域名
2. 分析自然流量趋势
3. 识别主要流量关键词
4. 分析内容类型和结构
5. 审查反向链接来源
6. 识别可复制策略
```
### 5. SEO 报告模板
**月度 SEO 报告框架:**
```markdown
# [网站名] 月度 SEO 报告 - [月份]
## 一、执行摘要
- 本月主要成就
- 关键指标概览
- 下月重点计划
## 二、流量和排名指标
### 2.1 有机流量趋势
[插入图表]
### 2.2 关键排名变化
| 关键词 | 上月排名 | 本月排名 | 变化 |
|--------|----------|----------|------|
| 关键词1 | 15 | 8 | +7 |
## 三、Core Web Vitals 状态
| 页面类型 | LCP | FID/INP | CLS | 状态 |
|----------|-----|---------|-----|------|
| 首页 | 2.1s | 85ms | 0.05 | 良好 |
## 四、内容表现
### 4.1 表现最佳页面
### 4.2 表现最差页面(需要优化)
## 五、技术 SEO 状态
- 索引覆盖率
- 抓取错误
- 结构化数据状态
## 六、下月行动计划
1. [具体任务]
2. [具体任务]
3. [具体任务]
```
## KPI 设置建议(一人企业)
```markdown
建议月度 KPI:
1. 有机流量增长:5-10%
2. 目标关键词进入前 3 位:2-3 个
3. 页面加载速度提升:10%
4. 索引覆盖率:> 95%
5. 核心页面 Core Web Vitals 达标:> 90%
衡量周期:
- 每日:核心指标监控
- 每周:排名追踪更新
- 每月:完整报告和策略调整
- 每季度:战略复盘和规划
```
## Tools & Resources
### 免费工具
- Google Search Console
- Google Analytics 4
- Google Data Studio / Looker Studio(可视化)
- Google Keyword Planner(关键词搜索量)
- Ubersuggest(免费版有限功能)
### 付费工具
- Ahrefs(综合分析)
- SEMrush(综合分析)
- Moz Pro(链接分析)
- Screaming Frog(技术审计)
- Accuranker / SERPWatcher(排名追踪)
## Best Practices
1. **关注有价值指标**:排名重要,但转化和 ROI 更重要
2. **建立基准线**:任何优化前先建立性能基准
3. **多维度分析**:结合 GSC + GA4 + 工具数据
4. **长期视角**:SEO 效果需要 3-6 个月才能显现
5. **持续迭代**:根据数据反馈不断调整策略
## Common Pitfalls
- 只关注排名不看转化
- 忽视 Core Web Vitals
- 过度依赖单一数据源
- 不追踪长周期趋势
- 报告过于复杂难以执行Related Skills
trae-project-setup
Trae 项目规范化配置专家。用于快速初始化 Trae 项目配置文件、生成项目规则、用户偏好设置和 Skill 模板。当用户需要:(1) 初始化新项目的 Trae 配置 (2) 生成 .trae 目录结构 (3) 创建 USER_PREFERENCES.md 用户偏好文件 (4) 创建 project_rules.md 项目规则文件 (5) 创建新的 Skill 模板 时使用此 Skill。
skill-creator
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Claude's capabilities with specialized knowledge, workflows, or tool integrations.
user-customization
指导用户如何自定义 Trae Skills 的配置,包括覆盖角色设定、调整技术偏好和定义全局规则。
Operations & Growth Expert
专注于内容创作(文案、运营稿件)、运营数据分析、以及营销活动策划与设置。帮助项目实现从“可用”到“好用”及“增长”的闭环。
AI Engineer
专注于 LLM 应用开发,涵盖 RAG 和 LangChain 架构。
Security Specialist
应用安全专家,专注于认证授权、数据保护和合规性审计。当用户需要:(1) 设计安全的登录认证系统 (2) 进行安全代码审查 (3) 检查 GDPR/隐私合规 (4) 防范常见安全漏洞 (OWASP Top 10) 时使用此 Skill。
seo-technical-expert
技术 SEO 专家,擅长网站性能优化、结构化数据、移动端优化和技术问题诊断。适用于网站技术实现、性能调优和搜索引擎抓取优化时使用。
seo-linkbuilding
链接建设与社交 SEO 专家,擅长外链获取策略、社交媒体优化和品牌建设。适用于提升网站权威度、获取高质量反向链接和社交信号增强时使用。
seo-content-strategy
SEO 内容策略专家,擅长关键词研究、内容规划、长尾词布局和内容营销策略。适用于创建 SEO 友好的文章 landing page 和营销内容时使用。
Comprehensive PDF manipulation toolkit for extracting text and tables, creating new PDFs, merging/splitting documents, and handling forms. When Claude needs to fill in a PDF form or programmatically process, generate, or analyze PDF documents at scale.
xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
docx
Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks