5 分钟快速开始

5 分钟内完成首次 WhisperX 查询。

1

验证连通性

required

在终端运行以下命令,确认你的网络能访问 WhisperX API:

bash
curl "https://api.whisperx.ai/api/intel?q=AI+layoffs&limit=3&mode=compact"
成功信号:
返回 JSON,包含 data: [...] —— 即使空数组也没问题。
如果失败:
检查网络/防火墙,参见 故障排除 → 网络.
2

安装 WhisperX Skill

required

将 Skill 复制到 OpenClaw skills 目录,无需 API Key。

bash
# From your terminal:
cp -r ~/.claude/skills/whisperx /path/to/your/openclaw/skills/

# Or download directly:
curl -L https://whisperx.ai/openclaw/skill.tar.gz | tar -xz -C ~/.claude/skills/
Skill 包含 6 个工具: search, get, trending, trends, connections, export
3

运行首次搜索

required

在 OpenClaw 中开始对话,询问任意话题:

conversation
# In your OpenClaw conversation:
"Search WhisperX for AI layoffs in the tech sector"

# Your agent will call whisperx_search automatically and return:
[1] Title of intel item (credibility: multi_source)
    Entity: OpenAI | Tags: layoff, restructuring
    2026-02-20 | https://whisperx.ai/intel/123
    ...
成功信号:
带可信度评分和链接的编号情报卡片。
结果为空?
尝试更宽泛的查询、移除板块过滤,或查看 故障排除 → 空结果.
4

自动化(可选)

optional

设置每日简报 cron,自动推送情报:

bash
# Daily briefing cron (9am):
bash ~/.claude/skills/whisperx/tools/search.sh " " the_office "$(date -u -v-1d +%Y-%m-%dT%H:%M:%SZ)" 20
bash ~/.claude/skills/whisperx/tools/trends.sh 1
快速参考
search_intel关键词搜索 + 过滤
get_intel按 ID 查看详情
trending_tags当前热门话题
trends数据量与异常分析
connections实体关联图
export_link下载链接(JSON/CSV)
← 返回遇到问题? →