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

dataforseo-clidataforseo CLI 搜索

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

22,767

周安装

968

GitHub Stars

2

下载量

7,976
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install dataforseo-cli

简介

通过 DataForSEO API 检查搜索量、CPC、关键词难度和竞争情况,辅助关键字研究。

  • 适用于 AI 代理进行 LLM 友好的关键词分析,查找相关词汇和市场数据。
  • 调用工具获取关键词指标,结合搜索结果优化内容策略和 SEO 规划。
  • 需配置 API 密钥并确认查询范围,避免高频请求导致限制或费用增加。
  • 返回数据包含搜索量和竞争度,适合用于市场调研和内容创作支持。

SKILL.md

name
dataforseo-cli
description
LLM-friendly keyword research CLI for AI agents. Check search volume, CPC, keyword difficulty, and competition via DataForSEO API. Find related keywords, analyze competitor rankings. Outputs TSV by default (optimized for agent context windows). Use when doing SEO research, content planning, or competitive keyword analysis.
license
MIT
metadata
author
alexgusevski
version
1.0.6

Keyword Research with dataforseo-cli

LLM-friendly keyword research CLI. Wraps the DataForSEO API and outputs TSV by default — compact, structured, and optimized for agent context windows.

npm: https://www.npmjs.com/package/dataforseo-cli GitHub: https://github.com/alexgusevski/dataforseo-cli

Setup

1. Install from npm

npm install -g dataforseo-cli

2. Check credentials

dataforseo-cli status

If credentials are already configured, you're good to go. If not, authenticate:

# With login + password
dataforseo-cli --set-credentials login=YOUR_LOGIN password=YOUR_PASSWORD

# Or with base64 token (from DataForSEO email)
dataforseo-cli --set-credentials base64=YOUR_BASE64_TOKEN

Credentials are stored in ~/.config/dataforseo-cli/config.json. The locations and languages commands work without credentials (local data).

Commands

status — Check credentials

Check if API credentials are configured without making any API calls.

dataforseo-cli status

Exits 0 if configured, exits 1 if not. Shows login username (not password).

volume — Keyword metrics

Get search volume, CPC, keyword difficulty (0–100), competition level, and 12-month search trend.

dataforseo-cli volume <keywords...> [options]

Arguments:

  • <keywords...> — One or more keywords (required). Batch multiple keywords in one call to save API requests.

Options:

  • -l, --location <code> — Location code (default: 2840 = US)
  • --language <code> — Language code (default: en)
  • --json — Output as JSON array
  • --table / --human — Output as human-readable table

Example:

dataforseo-cli volume "seo tools" "keyword research" "backlink checker"

Output (TSV):

keyword	volume	cpc	difficulty	competition	trend
seo tools	12500	2.35	45	HIGH	14800,13900,12500,12100,11800,12000,12500,13000,12800,12500,12200,11900
  • difficulty — 0–100 scale (0-30 easy, 31-60 medium, 61-100 hard)
  • cpc — Cost per click in USD
  • competition — LOW / MEDIUM / HIGH
  • trend — 12 monthly search volumes, newest first

related — Keyword suggestions

Find related keyword ideas from a seed keyword.

dataforseo-cli related <seed> [options]

Arguments:

  • <seed> — Seed keyword (required, single keyword)

Options:

  • -l, --location <code> — Location code (default: 2840 = US)
  • --language <code> — Language code (default: en)
  • -n, --limit <n> — Max results (default: 50)
  • --json — Output as JSON array
  • --table / --human — Output as human-readable table

Example:

dataforseo-cli related "ai agents" -n 20

Output (TSV):

keyword	volume	cpc	competition	difficulty
best ai agents	8100	3.10	0.82	52
ai agent framework	2400	1.85	0.65	38

competitor — Domain keyword analysis

See what keywords a domain currently ranks for.

dataforseo-cli competitor <domain> [options]

Arguments:

  • <domain> — Target domain (required, e.g. ahrefs.com)

Options:

  • -l, --location <code> — Location code (default: 2840 = US)
  • --language <code> — Language code (default: en)
  • -n, --limit <n> — Max results (default: 50)
  • --json — Output as JSON array
  • --table / --human — Output as human-readable table

Example:

dataforseo-cli competitor semrush.com -n 10

Output (TSV):

keyword	position	volume	cpc	difficulty	url
backlink checker	1	33100	4.50	72	https://ahrefs.com/backlink-checker

locations — Look up location codes

List all available location codes, or filter by name. Works offline — no API credentials needed.

dataforseo-cli locations [search] [--json]

Arguments:

  • [search] — Optional filter by name (e.g. sweden, new york)

Without search — lists all locations:

dataforseo-cli locations

With search — filters by name:

dataforseo-cli locations sweden

Output (TSV):

code	name	country	type
2752	Sweden	SE	Country

languages — Look up language codes

List all available language codes, or filter by name. Works offline — no API credentials needed.

dataforseo-cli languages [search] [--json]

Without search — lists all languages:

dataforseo-cli languages

With search — filters by name:

dataforseo-cli languages swedish

Output (TSV):

name	code
Swedish	sv

Output Formats

All data commands default to TSV (tab-separated values) — the most token-efficient structured format for LLMs.

FlagDescription
*(default)*TSV — fewest tokens, best for agent pipelines
--jsonJSON array — use when you need structured parsing
--table / --humanHuman-readable aligned table — for human review

Caching

Results are cached in ~/.config/dataforseo-cli/cache/ to avoid duplicate API calls and save costs. Same query + location + language = cache hit.

dataforseo-cli --print-cache

Workflow: SEO Article Research

  1. Start with seed keyword: dataforseo-cli volume "your topic"
  2. Expand: dataforseo-cli related "your topic" -n 30
  3. Filter: Pick keywords with volume > 100, difficulty < 60
  4. Check competitors: dataforseo-cli competitor competitor-domain.com -n 20
  5. Write article targeting the best keyword cluster

Tips

  • Batch keywords in volume — DataForSEO charges per API request, not per keyword
  • Default location is USA (2840). Always set --location for local/international SEO
  • Use locations and languages without arguments to see all available options
  • Difficulty scale: 0-30 easy, 31-60 medium, 61-100 hard

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.28%
按下载量换算7,839

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills