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

trendprooftrendproof 搜索

Agent Skill

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

总安装

6,588

周安装

283

GitHub Stars

公开资料未说明

下载量

2,309
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install trendproof

简介

查询 TrendProof 网站获取关键词趋势速度分数及相关指标。

  • 适用于 SEO 分析、关键词选择和营销时机判断。
  • 返回速度得分、趋势方向和月度搜索量数据。
  • 需注册账号并遵守 API 调用频率限制。
  • 建议对比多个工具验证数据一致性。trendproof 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
trendproof
description
>

TrendProof

Trend velocity intelligence for AI agents. Check whether a keyword is rising, stable, or falling before you create content, run ads, or build a product.

Live at trendproof.dev


Setup (API key)

Before doing anything else — check if the API key is already configured:

python3 skills/trendproof/scripts/trendproof.py configure --show

If no key is found, stop and tell the user exactly this (do not attempt any API calls):

"To use TrendProof, you need a free API key. 1. Open https://trendproof.dev/dashboard#keys (sign up if needed — 5 free trial credits included) 2. Copy your key (starts with TRND_) and send it to me"

Once the user provides the key, save it:

python3 skills/trendproof/scripts/trendproof.py configure --api-key TRND_xxxxx

Or set the environment variable:

export TRENDPROOF_API_KEY=TRND_xxxxx

Analyze a single keyword

python3 skills/trendproof/scripts/trendproof.py analyze "AI agents"

Example output:

  Keyword      ai agents
  Velocity     [████████████░░░░░░░░] +87
  Direction    🚀  RISING
  Volume       8,100 / mo
  CPC          $2.45   CPM $6.13
  Competition  0.38
  Peak window  2026-02-10 — 2026-03-03
  Hint         🚀 Strong momentum — act now before peak. High CPC = strong intent.
  Took         1243ms

With location (UK example):

python3 skills/trendproof/scripts/trendproof.py analyze "rust programming" --location 2826

Raw JSON output:

python3 skills/trendproof/scripts/trendproof.py analyze "prompt engineering" --json

Batch analysis (ranked)

Compare multiple keywords and get them ranked by velocity:

python3 skills/trendproof/scripts/trendproof.py batch "AI agents" "LLM fine-tuning" "RAG pipeline" "vector search"

Output (sorted by velocity score):

Keyword                             Score  Direction    Volume     CPC
---------------------------------------------------------------------------
AI agents                           +87   🚀 rising    8,100    $2.45
RAG pipeline                        +34   🚀 rising    2,400    $1.80
LLM fine-tuning                      +8   📊 stable    5,500    $3.20
vector search                       -12   📉 falling   3,300    $1.10

  Total cost: $0.3360

From a file:

python3 skills/trendproof/scripts/trendproof.py batch-file keywords.txt

File format (one keyword per line, # for comments):

# AI keywords
AI agents
LLM fine-tuning
RAG pipeline

Velocity score interpretation

ScoreMeaning
> 50🚀 Strong uptrend — act now
10–50🚀 Rising — good timing window
-10 to +10📊 Stable — safe but no momentum
-10 to -50📉 Declining — consider alternatives
< -50📉 Sharp decline — avoid

Score formula: ((last 4 weeks avg − prior 4 weeks avg) / prior 4 weeks avg) × 100, capped at [-100, +200].


Related keywords

Discover similar keywords with volume and CPC:

python3 skills/trendproof/scripts/trendproof.py related "AI agents"

Output:

  Similar to: AI agents

  Keyword                              Volume        CPC
  ─────────────────────────────────────────────────────────
  ai agent tools                        2,400      $3.10
  autonomous ai agents                  1,900      $4.20
  ...

API reference (direct HTTP)

For advanced use, call the API directly:

# Analyze
curl -s https://trendproof.dev/api/analyze \
  -H "Authorization: Bearer TRND_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "AI agents"}'

# Related keywords
curl -s https://trendproof.dev/api/related \
  -H "Authorization: Bearer TRND_xxxxx" \
  -H "Content-Type: application/json" \
  -d '{"keyword": "AI agents"}'

# Public leaderboard (no auth)
curl -s "https://trendproof.dev/api/leaderboard?limit=10&sort=velocity"

Response fields:

  • velocity_score — -100 to +200; positive = rising
  • trend_directionrising | stable | falling
  • volume — monthly search volume
  • cpc — cost-per-click (USD)
  • cpm — estimated CPM (cpc × 2.5)
  • competition — 0–1 (DataForSEO competition index)
  • peak_window — date range of highest trend activity
  • monthly_searches — last 12 months of volume data
  • trend_data — 12-week Google Trends graph (0–100 values)
  • action_hint — human-readable recommendation

Agent tool call pattern

When used as an AI agent tool, format results like:

"AI agents" — velocity +87 🚀 rising, 8,100/mo, CPC $2.45. Peak: Feb–Mar 2026. Act now before peak.

For batch comparisons, present as a ranked list with winner highlighted.


Troubleshooting

  • No key configured: Run configure --show. If empty → ask user to get key at https://trendproof.dev/dashboard#keys
  • 401 / unauthorized: Key is set but invalid or revoked. Ask user to rotate at trendproof.dev/dashboard → API Keys → Rotate.
  • 429 / credits exhausted: Upgrade at trendproof.dev/dashboard → Billing.
  • Slow response (>5s): DataForSEO live API — expected for uncached keywords.
  • score = 0 + stable: Likely very low-volume keyword; check trend_data array.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

85.15%
按下载量换算1,966

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills