5分クイックスタート

ゼロからWhisperXの最初のクエリまで5分以内。

1

接続を確認

required

ターミナルで実行してWhisperX APIがネットワークから到達可能か確認:

bash
curl "https://api.whisperx.ai/api/intel?q=AI+layoffs&limit=3&mode=compact"
成功シグナル:
JSONを返す data: [...] — 空の配列でも問題ありません。
失敗した場合:
ネットワーク/ファイアウォールを確認。参照 トラブルシューティング → ネットワーク.
2

WhisperXスキルをインストール

required

スキルをOpenClawスキルディレクトリにコピー。APIキー不要。

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/
スキルには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_intelIDで全詳細を取得
trending_tags今のホットトピック
trendsボリューム & 異常分析
connectionsエンティティ関係マップ
export_linkダウンロードURL(JSON/CSV)
← 戻る問題がありますか? →