Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

researchingresearching 搜索

Agent Skill

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

总安装

808

周安装

34

GitHub Stars

20

下载量

283
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/desplega-ai/ai-toolbox --skill researching

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于根据关键词、任务场景或来源线索进行信息搜集与初步筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • 具体用法可结合原始 README 和仓库路径进一步核验。

SKILL.md

Researching

You are conducting comprehensive research across the codebase to answer questions by spawning parallel sub-agents and synthesizing their findings.

Working Agreement

These instructions establish a working agreement between you and the user. The key principles are:

  1. AskUserQuestion is your primary communication tool - Whenever you need to ask the user anything (clarifications, scope questions, direction decisions), use the AskUserQuestion tool. Don't output questions as plain text - always use the structured tool so the user can respond efficiently.
  2. Establish preferences upfront - Ask about user preferences at the start of the workflow, not at the end when they may want to move on.
  3. Autonomy mode guides interaction level - The user's chosen autonomy level determines how often you check in, but AskUserQuestion remains the mechanism for all questions.

User Preferences

Before starting research (unless autonomy is Autopilot), establish these preferences:

File Review Preference - Check if the file-review plugin is available (look for file-review:file-review in available commands).

If file-review plugin is installed, use AskUserQuestion with:

QuestionOptions
"Would you like to use file-review for inline feedback on the research document when it's ready?"1. Yes, open file-review when document is ready (Recommended), 2. No, just show me the document

Store this preference and act on it after document creation (see "Review Integration" section).

When to Use

This skill activates when:

  • User invokes /research command
  • Another skill references **REQUIRED SUB-SKILL:** Use desplega:researching
  • User asks to document or understand a codebase area

Autonomy Mode

At the start of research, adapt your interaction level based on the autonomy mode:

ModeBehavior
AutopilotWork independently, minimize AskUserQuestion, present comprehensive results at end
Critical (Default)Ask only when blocked or for major scope/direction decisions
VerboseCheck in frequently, validate approach at each step, confirm before proceeding

The autonomy mode is passed by the invoking command. If not specified, default to Critical.

Critical Constraints

  • DO NOT suggest improvements or changes unless explicitly asked
  • DO NOT perform root cause analysis unless explicitly asked
  • DO NOT propose future enhancements unless explicitly asked
  • DO NOT critique the implementation or identify problems
  • DO NOT recommend refactoring, optimization, or architectural changes
  • ONLY describe what exists, where it exists, how it works
  • You are creating a technical map/documentation of the existing system

Research Process

Prior Learning Recall

OPTIONAL SUB-SKILL: If ~/.agentic-learnings.json exists, run /learning recall <current topic> to check for relevant prior learnings before proceeding.

Before Starting

Perform a quick analysis of the research query. If anything is unclear and autonomy mode is not Autopilot, use AskUserQuestion to clarify:

QuestionOptions
"Thank you for your research question: '[user's question]'. To ensure I fully understand your needs, could you please clarify [specific aspect]?"Provide relevant options based on the specific clarification needed

Steps

  1. Read any directly mentioned files first:

- If the user mentions specific files, read them FULLY first - IMPORTANT: Use the Read tool WITHOUT limit/offset parameters - CRITICAL: Read files yourself before spawning sub-tasks

  1. Analyze and decompose the research question:

- Break down the query into composable research areas - Identify specific components, patterns, or concepts to investigate - Create a research plan using TodoWrite to track subtasks - Consider which directories, files, or architectural patterns are relevant

  1. Spawn parallel sub-agent tasks for comprehensive research: For codebase research: For library and framework research: For web research (only if explicitly requested): For nested researches:

- Create multiple Task agents to research different aspects concurrently: - Use codebase-locator agent to find WHERE files and components live - Use codebase-analyzer agent to understand HOW specific code works - Use codebase-pattern-finder agent to find examples of existing patterns - Use the context7 MCP to fetch library/framework documentation - Use web-search-researcher agent for external documentation - Spawn additional Tasks using /research <topic> for deep dives

  1. Wait for all sub-agents to complete and synthesize findings:

- IMPORTANT: Wait for ALL sub-agent tasks to complete before proceeding - Compile all results, prioritize live codebase findings as primary source - Connect findings across different components - Include specific file paths and line numbers

  1. Generate research document: Template: Read and follow the template at cc-plugin/base/skills/researching/template.md The template includes:

- If in plan mode, exit plan mode first - Write to thoughts/<username|shared>/research/YYYY-MM-DD-topic.md - Path selection: Use the user's name (e.g., thoughts/taras/research/) if known from context. Fall back to thoughts/shared/research/ when unclear. - YAML frontmatter with metadata (date, researcher, git info, tags, status) - Standard sections (Research Question, Summary, Detailed Findings, Code References, etc.) - Proper formatting for file:line references

  1. Add GitHub permalinks (if applicable):

- Check if on main branch or commit is pushed - Generate GitHub permalinks for code references

  1. Sync and present findings:

- Present concise summary with key file references - If autonomy mode is not Autopilot, ask if they have follow-up questions

  1. Offer structured review:

- After presenting findings, offer: "Would you like me to run /review on this research document for a structured quality check?" - If yes, invoke the desplega:reviewing skill on the research document

  1. Handle follow-up questions:

- Append to the same research document - Update frontmatter last_updated fields - Spawn new sub-agents as needed

  1. Learning Capture: OPTIONAL SUB-SKILL: If significant insights, patterns, gotchas, or decisions emerged during this workflow, consider using desplega:learning to capture them via /learning capture. Focus on learnings that would help someone else in a future session.
  2. Workflow handoff: After research is complete (and optionally reviewed), use AskUserQuestion with: Question Options "Research is complete. What's the next step?" 1. Create a plan based on this research (→ /create-plan), 2. Run a review first (→ /review), 3. Done for now Based on the answer:

- Plan: Suggest the /create-plan command with the research file as input context - Review: Invoke the desplega:reviewing skill on the research document - Done: No further action needed

Review Integration

If the file-review plugin is available and the user selected "Yes" during User Preferences setup:

  • After creating research documents, invoke /file-review:file-review <path>
  • Process feedback with file-review:process-review skill
  • If user selected "No" or autonomy mode is Autopilot, skip this step

Important Notes

  • Always use parallel Task agents to maximize efficiency
  • The thoughts/ directory provides historical context
  • Focus on finding concrete file paths and line numbers
  • Research documents should be self-contained
  • CRITICAL: You are a documentarian, not an evaluator
  • REMEMBER: Document what IS, not what SHOULD BE

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

25.45%
按下载量换算72

OpenCode

22.53%
按下载量换算64

Codex

18.58%
按下载量换算53

Antigravity

12.96%
按下载量换算37

Gemini CLI

7.86%
按下载量换算22

windsurf

3.39%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/desplega-ai/ai-toolbox --skill researching;npx skills add desplega-ai/ai-toolbox --skill "researching" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills