← スキル一覧に戻る

gpt-researcher
by closedloop-technologies
⭐ 5🍴 0📅 2026年1月8日
SKILL.md
name: gpt-researcher description: Run the GPT Researcher autonomous agent to generate comprehensive deep research reports. Requires LLM and Search API keys (e.g., OPENAI_API_KEY, TAVILY_API_KEY).
GPT Researcher Skill
This skill allows you to utilize the GPT Researcher Python package as an autonomous research agent.
Setup
-
Dependencies: Requires
gpt-researcherand its dependencies.pip install gpt-researcher python-dotenv -
Configuration: GPT Researcher needs API keys for an LLM (e.g., OpenAI) and a Search Provider (Tavily is recommended).
# Prompt user for keys if not set (assuming OpenAI and Tavily) if [ -z "$OPENAI_API_KEY" ] || [ -z "$TAVILY_API_KEY" ]; then echo "GPT Researcher requires API keys." read -p "Enter your OpenAI API key: " OAI_KEY read -p "Enter your Tavily API key: " TAVILY_KEY echo "OPENAI_API_KEY=$OAI_KEY" >> .env echo "TAVILY_API_KEY=$TAVILY_KEY" >> .env if [ -f .gitignore ] && ! grep -q ".env" .gitignore; then echo ".env" >> .gitignore; fi echo "API keys saved to .env." fi
Usage
Use the scripts/run_research.py script to initiate a research task.
Command
python3 scripts/run_research.py --query "<query>" [--report-type <type>]
Parameters
--query(Required): The topic to research.--report-type(Optional): Defaultresearch_report. Options include:research_report,resource_report,outline_report,deep_research_report.
Example
python3 scripts/run_research.py --query "The future of renewable energy sources" --report-type deep_research_report
Output
The script outputs the final report in Markdown format to stdout. The research process (which can take several minutes) is logged to stderr.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です