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)
← 返回遇到問題? →