unified-research
複数のリサーチAPI(Tavily/SerpAPI/Brave/NewsAPI/Perplexity)を統合した情報収集。 Use when: (1) user says「リサーチして」「調べて」「情報を集めて」「深掘りして」, (2) user wants multi-source research, (3) user mentions「ファクトチェック」「情報収集」. Do NOT use for: APIキー不要の簡易調査(research-freeを使用)、 最強の徹底調査(mega-researchを使用)。
npx skills add majiayu000/claude-skill-registry --skill unified-research --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Unified Research Skill 複数のリサーチAPIを統合した高品質な情報収集スキル。 ## When to Use This Skill 以下の場合に使用: - トピックについて深くリサーチしたい時 - 信頼性の高い情報源から情報を集めたい時 - ファクトベースのコンテンツを作成したい時 - 複数の検索エンジンの結果を比較したい時 **トリガーワード**: 「リサーチして」「調べて」「情報を集めて」「深掘りして」 ## 統合API | API | 特徴 | 用途 | |-----|------|------| | **Tavily** | AI検索特化 | 高品質なセマンティック検索 | | **SerpAPI** | Google検索 | 構造化された検索結果 | | **Brave Search** | プライバシー重視 | 広範なWeb検索 | | **NewsAPI** | ニュース集約 | 最新ニュース取得 | | **Perplexity** | AI検索+引用 | サマリー生成と引用付き回答 | ## Quick Start ```bash cd /Users/matsumototoshihiko/Desktop/dev/\ kindlenote0201/kindle-content-empire # 単一クエリでリサーチ npx ts-node packages/worker/src/research/run-unified-research.ts single "新NISA 2024" # 新NISA専用リサーチ(7クエリ自動実行) npx ts-node packages/worker/src/research/run-unified-research.ts nisa # トピックリサーチ(5クエリ自動実行) npx ts-node packages/worker/src/research/run-unified-research.ts topic "投資信託" ``` ## API使用例 ### TypeScriptから使用 ```typescript import { unifiedSearch, researchTopic } from './unified-research'; // 単一クエリ const result = await unifiedSearch('新NISA 2024', { tavily: true, serpapi: true, brave: true, newsapi: false, // ニュースは必要時のみ perplexity: true, }); console.log(`ソース数: ${result.sources.length}`); console.log(`ファクト数:
- When to Use This Skill
- 統合API
- Quick Start
- API使用例
- TypeScriptから使用
- 出力形式
- ResearchResult
- ResearchSource
- 環境変数
- レート制限
- ベストプラクティス
- ファイル構成
- トラブルシューティング
- 関連スキル
cd /Users/matsumototoshihiko/Desktop/dev/\ kindlenote0201/kindle-content-empire npx ts-node packages/worker/src/research/run-unified-research.ts single "新NISA 2024" npx ts-node packages/worker/src/research/run-unified-research.ts nisa npx ts-node packages/worker/src/research/run-unified-research.ts topic "投資信託"
What does the unified-research skill do?
複数のリサーチAPI(Tavily/SerpAPI/Brave/NewsAPI/Perplexity)を統合した情報収集。 Use when: (1) user says「リサーチして」「調べて」「情報を集めて」「深掘りして」, (2) user wants multi-source research, (3) user mentions「ファクトチェック」「情報収集」. Do NOT use for: APIキー不要の簡易調査(research-freeを使用)、 最強の徹底調査(mega-researchを使用)。
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill unified-research --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
