Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

research研究

Agent Skill

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

总安装

539

周安装

22

GitHub Stars

公开资料未说明

下载量

172
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add robdtaylor/personal-ai-infrastructure --skill "research"

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词定位候选结果。
  • 通过 npx skills add robdtaylor/personal-ai-infrastructure --skill "research" 安装。
  • 需确认权限范围和维护状态,注意是否触发联网或数据访问。
  • 建议结合来源仓库和 README 验证搜索范围与结果准确性。

SKILL.md

name
Research
description
Multi-source parallel research using Perplexity, Gemini, and Claude. Three modes - Quick (1 query), Standard (3 queries), Extensive (8 queries). USE WHEN user says 'research', 'investigate', 'find out about', 'do research on', or requests comprehensive information gathering.

Research Skill

CRITICAL: Use the Research CLI for Multi-Source Research

For ANY research request, use the research CLI via Bash:

# All sources in parallel (RECOMMENDED - fastest)
~/.claude/bin/research --all "your research query"

# Individual sources
~/.claude/bin/research --perplexity "query"    # Fast web search
~/.claude/bin/research --gemini "query"        # Multi-perspective
~/.claude/bin/research --claude "query"        # Detailed analysis (slower)

DO NOT use WebSearch directly for research requests - use the CLI above.


Three Research Modes

QUICK RESEARCH MODE

  • Trigger: User says "quick research" or simple queries
  • Method: Single research --all "query" call
  • Time: ~15-30 seconds
  • Result: 3 source results (Perplexity, Claude, Gemini)

STANDARD RESEARCH MODE (Default)

  • Trigger: Default for most research requests
  • Method: 3 parallel Bash calls with different query angles
  • Time: ~30-45 seconds
  • Result: 9 source results (3 angles × 3 sources)

EXTENSIVE RESEARCH MODE

  • Trigger: User says "extensive research" or "deep dive"
  • Method: 8 parallel Bash calls covering diverse angles
  • Time: ~45-90 seconds
  • Result: 24 source results (8 angles × 3 sources)

Standard Research Workflow

Step 1: Decompose the Question

Break the user's question into 3 focused sub-questions:

  • Core facts and recent developments
  • Context, implications, and analysis
  • Contrarian views, controversies, or edge cases

Step 2: Launch Parallel Research (ONE MESSAGE)

CRITICAL: Use a SINGLE message with multiple Bash tool calls for parallel execution

# Launch all 3 in parallel (single message with 3 Bash calls)
~/.claude/bin/research --all "sub-question 1 focusing on core facts"
~/.claude/bin/research --all "sub-question 2 focusing on implications"
~/.claude/bin/research --all "sub-question 3 focusing on controversies"

Step 3: Parse JSON Results

Each call returns JSON:

{
  "source": "perplexity|claude|gemini",
  "query": "the query",
  "timestamp": "ISO timestamp",
  "success": true,
  "content": "research findings...",
  "citations": ["url1", "url2"],
  "duration_ms": 1234
}

For --all, returns array of 3 results.

Step 4: Synthesize Findings

Confidence Levels:

  • HIGH CONFIDENCE: Corroborated by 2+ sources
  • MEDIUM CONFIDENCE: Found by one source, seems reliable
  • LOW CONFIDENCE: Single source, needs verification

Structure:

## Key Findings

### [Topic Area 1]
**High Confidence:**
- Finding X (Sources: perplexity, claude)

**Medium Confidence:**
- Finding Z (Source: gemini only)

## Source Attribution
- **Perplexity**: [web/current events]
- **Claude**: [detailed analysis]
- **Gemini**: [multi-perspective synthesis]

## Conflicting Information
- [Note any disagreements]

Extensive Research Workflow

Step 1: Generate 8 Diverse Angles

  • Core facts and current state
  • Historical context and evolution
  • Technical deep-dive
  • Practical implications and applications
  • Contrarian views and criticisms
  • Future predictions and trends
  • Cross-domain connections
  • Edge cases and unusual perspectives

Step 2: Launch 8 Parallel Queries

# All 8 in parallel (single message)
~/.claude/bin/research --all "angle 1: core facts about [topic]"
~/.claude/bin/research --all "angle 2: historical context of [topic]"
~/.claude/bin/research --all "angle 3: technical deep-dive on [topic]"
~/.claude/bin/research --all "angle 4: practical implications of [topic]"
~/.claude/bin/research --all "angle 5: criticisms around [topic]"
~/.claude/bin/research --all "angle 6: future predictions for [topic]"
~/.claude/bin/research --all "angle 7: cross-domain connections to [topic]"
~/.claude/bin/research --all "angle 8: edge cases of [topic]"

API Keys Required

Located in ~/.claude/.env:

FeatureAPI KeyRequired
PerplexityPERPLEXITY_API_KEYFor --perplexity
GeminiGOOGLE_API_KEYFor --gemini
ClaudeNoneBuilt-in WebSearch

Critical Rules

Parallel Execution

  • ✅ Launch ALL research queries in ONE message (parallel Bash calls)
  • ✅ Each query covers a different angle
  • ❌ DON'T launch sequentially (kills speed benefit)
  • ❌ DON'T wait between queries

Error Handling

  • If a source fails, proceed with successful results
  • Note failures in the final report
  • Check success: false in JSON for errors

Research Metrics Template

Include at end of every research report:

**📈 RESEARCH METRICS:**
- **Mode:** [Quick/Standard/Extensive]
- **Total Queries:** [X] (angles × 3 sources)
- **Sources:** Perplexity, Claude, Gemini
- **Confidence Level:** [High/Medium/Low] ([%])

Example: Standard Research

User: "Research quantum computing developments"

Kai executes:

# 3 parallel Bash calls in ONE message
~/.claude/bin/research --all "quantum computing recent breakthroughs 2026"
~/.claude/bin/research --all "quantum computing practical applications timeline"
~/.claude/bin/research --all "quantum computing challenges limitations"

Result: 9 source queries (3 angles × 3 sources) in ~30-45 seconds.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

28.1%
按下载量换算48

windsurf

24.09%
按下载量换算41

Cursor

18.98%
按下载量换算33

Antigravity

14.39%
按下载量换算25

Gemini CLI

7.54%
按下载量换算13

trae

3.95%
按下载量换算7

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills