name: content-researcher description: 內容研究員:批次搜尋、收集、總結文章/影片/新聞,自動生成結構化素材庫,支援關鍵詞和趨勢分析 metadata: { "openclaw": { "emoji": "🔍", "requires": { "python": "3.7+", "bins": ["claw", "summarize"] }, }, }
快速批次收集和總結行業素材,為內容創作者提供結構化調研報告。
# 安裝本技能
./install.sh
# 確保 summarize 已安裝
clawhub install summarize
# 搜尋 AI 相關的最新文章
content-researcher --keywords "AI,人工智慧" --output ai_research.md
# 增加搜尋深度
content-researcher --keywords "自媒體運營" --per-keyword 20 --max-results 50 --summarize
# JSON 格式(便於程式處理)
content-researcher --keywords "Python程式設計" --format json --output python_news.json
# 啟用 AI 總結(推薦)
content-researcher --keywords "內容創作" --summarize --output full_report.md
| 引數 | 型別 | 預設 | 說明 |
|---|---|---|---|
--keywords |
字串 | 必填 | 搜尋關鍵詞,逗號分隔,如"AI,自媒體" |
--per-keyword |
整數 | 10 | 每個關鍵詞搜尋結果數量 |
--max-results |
整數 | 20 | 去重後最大結果數 |
--output |
路徑 | content_research_report.md | 輸出檔案路徑 |
--summarize |
布林 | false | 是否為每個結果生成 AI 摘要 |
--format |
列舉 | markdown | 輸出格式(markdown, json) |
--model |
字串 | google/gemini-3-flash-preview | 總結模型(僅 --summarize 有效) |
# 內容調研報告
**生成時間**:2026-03-15 21:00:15
**關鍵詞**:AI, 自媒體
## 📊 搜尋結果概覽
共找到 15 條相關結果
### 1. 人工智慧新突破:GPT-5 即將釋出
**來源**:techcrunch.com
**連結**:https://techcrunch.com/...
**摘要**:
OpenAI 宣佈 GPT-5 將在下月釋出,新模型將具備多模態推理能力...
**AI 總結**:
本文報道 OpenAI GPT-5 即將釋出,主要新特性包括多模態推理、程式碼生成能力提升,預計將推動 AI 應用落地。
---
執行後會生成:
<output>:主報告檔案(Markdown 或 JSON)--summarize,還有 AI 生成的總結--summarize:額外增加 2-5 分鐘(每個結果單獨呼叫 LLM)claw tools web_search 進行搜尋summarize CLI 進行文本摘要(如果安裝)小蔥技能有更好的技能skills外掛。
# 場景:需要寫一篇關於"自媒體運營"的文章
# 步驟 1:快速調研
content-researcher --keywords "自媒體,內容創作,流量密碼" --summarize --output research.md
# 步驟 2:檢視 report.md,瞭解行業動態
cat research.md
# 步驟 3:使用 omnipublisher 或 social-publisher 開始寫作
omnipublisher research.md --platforms wechat,xiaohongshu
claw 命令可用clawhub install summarize 安裝--per-keyword 數量,或停用 --summarizeMIT
這個 Skill 質量較好,文件詳細、使用說明清晰,能較好地完成批次搜尋和內容總結任務。但部分功能(如趨勢分析)只是佔位符,實際價值有限;安裝過程也較為簡單,僅檢查依賴而非真正安裝。總體適合有技術基礎的使用者使用,普通使用者可能需要額外配置才能順利執行。