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

30x-seo-keywords30X SEO keywords 搜索

Agent Skill

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

总安装

885

周安装

38

GitHub Stars

24

下载量

310
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/norahe0304-art/30x-seo --skill 30x-seo-keywords

简介

适用于需要快速获取 SEO 关键词数据的研究场景,如内容策划、竞品分析和流量预测。

  • 核心能力包括批量查询关键词表现、识别高潜力词汇和发现流量缺口。
  • 通过命令行调用本地配置的 API 密钥执行分析任务。
  • 安装前需确认已配置 ~/.config/dataforseo/auth 中的认证信息, 并注意其依赖网络访问与外部服务调用权限。

SKILL.md

SEO Keywords Analysis

Comprehensive keyword research and analysis using DataForSEO API via direct curl calls.

API Configuration

Credentials stored in ~/.config/dataforseo/auth (Base64 encoded).

# Read auth token
AUTH=$(cat ~/.config/dataforseo/auth)

Quick Reference

CommandWhat it does
/seo keywords research <seed>Generate keyword ideas from seed keyword
/seo keywords volume <keyword1, keyword2,...>Get search volume for keywords
/seo keywords difficulty <keyword1, keyword2,...>Analyze keyword difficulty scores
/seo keywords site <domain>Find keywords a site ranks for
/seo keywords gap <your-domain> <competitor>Find keyword opportunities
/seo keywords intent <keyword1, keyword2,...>Analyze search intent
/seo keywords trendingFind trending search queries
/seo keywords history <keyword>Historical search volume data

API Endpoints

Keyword Ideas

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/keyword_ideas/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keywords": ["SEED_KEYWORD"], "location_name": "United States", "language_code": "en", "limit": 50}]'

Keyword Suggestions (Autocomplete)

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/keyword_suggestions/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keyword": "SEED_KEYWORD", "location_name": "United States", "language_code": "en", "limit": 50}]'

Related Keywords

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/related_keywords/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keyword": "SEED_KEYWORD", "location_name": "United States", "language_code": "en", "limit": 50}]'

Bulk Keyword Difficulty

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/bulk_keyword_difficulty/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keywords": ["kw1", "kw2", "kw3"], "location_name": "United States", "language_code": "en"}]'

Search Volume (Google Ads Data)

curl -s -X POST "https://api.dataforseo.com/v3/keywords_data/google_ads/search_volume/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keywords": ["kw1", "kw2"], "location_code": 2840, "language_code": "en"}]'

Ranked Keywords (Site Analysis)

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/ranked_keywords/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"target": "example.com", "location_name": "United States", "language_code": "en", "limit": 100}]'

Search Intent

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/search_intent/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keywords": ["kw1", "kw2"], "language_code": "en"}]'

Historical Keyword Data

curl -s -X POST "https://api.dataforseo.com/v3/dataforseo_labs/google/historical_search_volume/live" \
  -H "Authorization: Basic $(cat ~/.config/dataforseo/auth)" \
  -H "Content-Type: application/json" \
  -d '[{"keywords": ["KEYWORD"], "location_name": "United States", "language_code": "en"}]'

Analysis Modes

1. Keyword Research (Ideas Generation)

Generate keyword ideas from a seed keyword:

Input: seed keyword (e.g., "coffee maker")
Output:
- Related keyword ideas
- Search volume per keyword
- CPC and competition data
- Keyword difficulty score
- Search intent classification

2. Search Volume Analysis

Get accurate search volume data:

Input: list of keywords
Output:
- Monthly search volume
- Search volume trend (12 months)
- CPC estimate
- Competition level (0-1)
- Seasonal patterns

3. Keyword Difficulty Assessment

Analyze ranking difficulty:

Input: list of keywords
Output:
- Difficulty score (0-100)
- SERP feature presence
- Top 10 competitor strength
- Estimated effort to rank

Difficulty Interpretation:

  • 0-20: Easy (new sites can rank)
  • 20-40: Moderate (some authority needed)
  • 40-60: Hard (established sites only)
  • 60-80: Very Hard (high authority required)
  • 80-100: Extremely Hard (dominant players only)

4. Site Keyword Analysis

Find keywords a domain ranks for:

Input: domain (e.g., "example.com")
Output:
- All ranking keywords
- Position for each keyword
- Search volume
- Traffic estimate
- Featured snippet presence

5. Search Intent Analysis

Classify keyword intent:

Input: list of keywords
Output:
- Intent type per keyword:
  - Informational (how, what, why)
  - Navigational (brand searches)
  - Commercial (best, review, compare)
  - Transactional (buy, price, discount)
- Content format recommendations

Content Mapping:

IntentContent Type
InformationalBlog posts, guides, tutorials
NavigationalLanding pages, about pages
CommercialComparison pages, reviews
TransactionalProduct pages, pricing pages

Keyword Prioritization Framework

Priority Matrix

Score each keyword on these factors:

FactorWeightScoring
Search Volume25%High (3), Medium (2), Low (1)
Difficulty30%Easy (3), Medium (2), Hard (1)
Business Relevance25%High (3), Medium (2), Low (1)
Intent Match20%Perfect (3), Good (2), Partial (1)

Quick Win Identification

Quick wins have:

  • Search volume > 100/month
  • Difficulty < 40
  • Commercial or transactional intent
  • Direct business relevance

Output Format

Keyword Research Report

# Keyword Research: [seed keyword]

## Overview
- Total keywords found: X
- Average monthly volume: X
- Average difficulty: X

## Top Opportunities (Priority Sorted)

| Keyword | Volume | Difficulty | Intent | Priority |
|---------|--------|------------|--------|----------|
| [kw1] | X | X | Info | High |
| [kw2] | X | X | Trans | High |

## Keyword Clusters

### Cluster 1: [Topic]
- keyword a (vol: X, diff: X)
- keyword b (vol: X, diff: X)

## Content Recommendations

### Immediate Actions (Quick Wins)
1. [Keyword] -> Create [content type]
2. [Keyword] -> Create [content type]

Integration with Other SEO Skills

  • Use seo-content to create content for target keywords
  • Use seo-backlinks to build authority for competitive keywords
  • Use seo-serp to track ranking progress

[PROTOCOL]: Update this header on changes, then check CLAUDE.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.05%
按下载量换算112

Claude

31.63%
按下载量换算98

Cursor

19.7%
按下载量换算61

Gemini CLI

9.51%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills