Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

research研究

Agent Skill

research 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

451

周安装

19

GitHub Stars

2

下载量

158
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:research(研究)
来源仓库:https://github.com/multicam/qara
仓库路径:skills/research
安装命令:
npx skills add https://github.com/multicam/qara --skill research
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/multicam/qara --skill research

简介

用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 使用时不能把工具输出直接当最终结论,需人工复核关键信息。

SKILL.md

Research Skill

API Keys Required

This skill works best with these optional API keys configured in ~/.env:

FeatureAPI KeyGet It From
Perplexity ResearchPERPLEXITY_API_KEYhttps://perplexity.ai/settings/api
Gemini ResearchGOOGLE_API_KEYhttps://aistudio.google.com/app/apikey

Works without API keys:

  • Claude-based research (uses built-in WebSearch)
  • Basic web fetching (uses built-in WebFetch)

Workflow Routing

Multi-Source Research Workflows

When user requests comprehensive parallel research: Examples: "do research on X", "research this topic", "find information about Y", "investigate this subject" → READ: ${PAI_DIR}/skills/research/workflows/conduct.mdEXECUTE: Parallel multi-agent research using available researcher agents

When user requests Claude-based research (FREE - no API keys): Examples: "use claude for research", "claude research on X", "use websearch to research Y" → READ: ${PAI_DIR}/skills/research/workflows/claude-research.tsEXECUTE: Intelligent query decomposition with Claude's WebSearch

When Claude WebSearch fails or returns poor results (fallback): Examples: WebSearch returned nothing, stale results, rate-limited, user says "use gemini" → EXECUTE: Launch gemini-researcher agent via Task tool with the failed query → NOTE: Also use as parallel second opinion when confidence is low

When user requests Perplexity research (requires PERPLEXITY_API_KEY): Examples: "use perplexity to research X", "perplexity research on Y" → READ: ${PAI_DIR}/skills/research/workflows/perplexity-research.tsEXECUTE: Fast web search with query decomposition via Perplexity API

When user requests interview preparation: Examples: "prepare interview questions for X", "interview research on Y" → READ: ${PAI_DIR}/skills/research/workflows/interview-research.mdEXECUTE: Interview prep with diverse question generation

Content Retrieval Workflows

When user indicates difficulty accessing content: Examples: "can't get this content", "site is blocking me", "CAPTCHA blocking" → READ: ${PAI_DIR}/skills/research/workflows/retrieve.mdEXECUTE: Content retrieval via WebFetch

When user provides YouTube URL: Examples: "get this youtube video", "extract from youtube URL" → READ: ${PAI_DIR}/skills/research/workflows/youtube-extraction.mdEXECUTE: YouTube content extraction

When user requests web scraping: Examples: "scrape this site", "extract data from this website" → READ: ${PAI_DIR}/skills/research/workflows/web-scraping.mdEXECUTE: Web scraping techniques and tools

Content Enhancement Workflows

When user requests content enhancement: Examples: "enhance this content", "improve this draft" → READ: ${PAI_DIR}/skills/research/workflows/enhance.mdEXECUTE: Content improvement and refinement

When user requests knowledge extraction: Examples: "extract knowledge from X", "get insights from this" → READ: ${PAI_DIR}/skills/research/workflows/extract-knowledge.mdEXECUTE: Knowledge extraction and synthesis


Multi-Source Research

Three Research Modes

QUICK RESEARCH MODE:

  • User says "quick research" → Launch 1 agent per researcher type
  • Timeout: 2 minutes
  • Best for: Simple queries, straightforward questions

STANDARD RESEARCH MODE (Default):

  • Default for most research requests → Launch 3 agents per researcher type
  • Timeout: 3 minutes
  • Best for: Most research needs, comprehensive coverage

EXTENSIVE RESEARCH MODE:

  • User says "extensive research" → Launch 8 agents per researcher type
  • Timeout: 10 minutes
  • Best for: Deep-dive research, comprehensive reports

Available Research Agents

Check ${PAI_DIR}/agents/ for agents with "researcher" in their name:

  • gemini-researcher - Uses Gemini CLI as fallback when WebSearch fails (requires GOOGLE_API_KEY)

Speed Benefits

  • Old approach: Sequential searches → 5-10 minutes
  • Quick mode: 1 agent per type → 2 minute timeout
  • Standard mode: 3 agents per type → 3 minute timeout
  • Extensive mode: 8 agents per type → 10 minute timeout

Intelligent Content Retrieval

Three-Layer Escalation System

Layer 1: Built-in Tools (Try First - FREE)

  • WebFetch - Standard web content fetching
  • WebSearch - Search engine queries
  • When to use: Default for all content retrieval

Critical Rules:

  • Always try simplest approach first (Layer 1)
  • Escalate only when previous layer fails
  • Document which layers were used and why

File Organization

Working Directory (Scratchpad)

${PAI_DIR}/scratchpad/YYYY-MM-DD-HHMMSS_research-[topic]/
├── raw-outputs/
├── synthesis-notes.md
└── draft-report.md

Permanent Storage (History)

${PAI_DIR}/history/research/YYYY-MM/YYYY-MM-DD_[topic]/
├── README.md
├── research-report.md
└── metadata.json

Key Principles

  1. Parallel execution - Launch multiple agents simultaneously
  2. Hard timeouts - Don't wait indefinitely, proceed with partial results
  3. Simplest first - Always try free tools before paid services
  4. Auto-routing - Skill analyzes intent and activates appropriate workflow

WebSearch Tool Usage

Built-in Web Search (FREE)

Claude Code includes a built-in WebSearch tool for real-time web queries.

When to Use:

  • Current events and recent information
  • Documentation and API references
  • Pricing, availability, status checks
  • Fact verification beyond training data

Best Practices:

// Include year for recent info
WebSearch({ query: "Next.js 15 features 2024" })

// Be specific
WebSearch({ query: "TypeScript 5.4 satisfies operator examples" })

// Use domain filtering for trusted sources
WebSearch({
  query: "React hooks best practices",
  allowed_domains: ["react.dev", "kentcdodds.com"]
})

Query Optimization:

  • Include year: "React Server Components 2024"
  • Be specific: "Bun vs Node.js benchmark comparison"
  • Use domain filters: Focus on official docs or trusted sources

Source Citation: Always cite sources in research output:

## Sources
- [React Documentation](https://react.dev/...)
- [Official Blog Post](https://...)

WebSearch vs WebFetch

NeedTool
Search for informationWebSearch
Get specific page contentWebFetch
Multiple search resultsWebSearch
Full article extractionWebFetch

Integration with Research Workflows

WebSearch is the foundation of claude-researcher agent:

  1. Query decomposition into sub-queries
  2. Parallel WebSearch calls
  3. Result synthesis
  4. Source attribution

Workflow Files

WorkflowFileAPI Keys Needed
Multi-Source Researchworkflows/conduct.mdVaries by agent
Claude Researchworkflows/claude-research.tsNone (FREE)
Perplexity Researchworkflows/perplexity-research.tsPERPLEXITY_API_KEY
Interview Prepworkflows/interview-research.mdNone
Content Retrievalworkflows/retrieve.mdNone
YouTube Extractionworkflows/youtube-extraction.mdNone
Web Scrapingworkflows/web-scraping.mdNone
Content Enhancementworkflows/enhance.mdNone
Knowledge Extractionworkflows/extract-knowledge.mdNone

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.39%
按下载量换算59

Claude

30.39%
按下载量换算48

Cursor

17.89%
按下载量换算28

Gemini CLI

9.05%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills