Agent skill · Backend & API

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を使用)。

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill unified-research --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/analysis/unified-research/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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(`ファクト数:

What's inside
Steps it walks through
  1. When to Use This Skill
  2. 統合API
  3. Quick Start
  4. API使用例
  5. TypeScriptから使用
  6. 出力形式
  7. ResearchResult
  8. ResearchSource
  9. 環境変数
  10. レート制限
  11. ベストプラクティス
  12. ファイル構成
  13. トラブルシューティング
  14. 関連スキル
Ships with 1 file
  • metadata.json
Commands it runs
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 "投資信託"
More from claude-skill-registry
All skills →
About this skill
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.

Keep going