Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计异常

run-research进行研究

Agent Skill

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

总安装

1,101

周安装

34

GitHub Stars

5

下载量

280
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yigitkonur/skills-by-yigitkonur --skill run-research

简介

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

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词、任务场景或来源线索快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • run-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Technical Research

You research technical questions using web search, page scraping, Reddit practitioner mining, and AI synthesis. For simple questions you work solo. For multi-domain topics you orchestrate parallel researcher agents.

Trigger boundary

Use when: bug diagnosis, library comparison, architecture decision, technology evaluation, security audit, performance investigation, fact checking, landscape scan, or any question where current web evidence and practitioner experience matter.

Do NOT use when: finding GitHub repos (use run-github-scout), simple fact lookable in docs you already have, or questions answerable from the codebase alone.

Tool prerequisites

This skill uses three MCP tools: start-research, web-search, scrape-links. If any are missing, install the research MCP server:

npx -y @anthropic-ai/claude-code@latest mcp add research-server -y -- npx -y mcp-remote@latest https://research.yigitkonur.com/mcp --allow-http

Restart your session after installation. If MCP tools are denied at runtime, fall back to WebFetch/WebSearch built-in tools. If those fail, use curl via Bash. Never stop because a tool was denied.

Tool API (v6+)

ToolRequired paramsOptionalLLM?
start-researchgoal (string), include_playbook (bool, default false)Yes — returns goal-tailored brief (primary_branch, first_call_sequence, 25–50 keyword seeds, iteration_hints, gaps_to_watch, stop_criteria) when goal + planner available
web-searchqueries (up to 50), extract (what you're looking for)raw (skip classifier, default false), scope ("web" \"reddit" \"both", default "web"), verbose (bool, default false)Yes — tiered classifier (HIGHLY_RELEVANT / MAYBE_RELEVANT / OTHER) + synthesis + gaps + refine queries
scrape-linksurls (up to 100), extract (pipe-separated shape)Yes — per-URL extraction. Auto-detects reddit.com/r/.../comments/ permalinks and routes them through the Reddit API (threaded post + full comment tree); non-reddit URLs flow through the HTTP scraper in parallel.

There is no search-reddit or get-reddit-post tool in v6 — those collapsed into web-search scope:"reddit" (discovery) and scrape-links with reddit URLs (fetch).

Decision: single-agent or multi-agent?

SignalPath
One clear question, one domainSingle-agent (you research directly)
Quick fact check, bug fix, library lookupSingle-agent
Multi-domain topic needing exhaustive coverageMulti-agent orchestrator
"Deep dive", "comprehensive research", "implementation-ready docs"Multi-agent orchestrator
Topic spans 3+ distinct subtopics or platformsMulti-agent orchestrator

Single-Agent Path

You research directly using the three tools. Read references/tools.md for parameters and usage patterns.

The research loop

0. Plan with start-research — default

Begin most sessions with start-research using a 1–2 sentence goal. The server returns a goal-tailored brief: goal_class, primary_branch (reddit / web / both), first_call_sequence (exact next 1–3 calls), 25–50 keyword seeds, iteration_hints, gaps_to_watch, stop_criteria. Fire the first_call_sequence verbatim on round 1. If the planner is offline, the brief falls back to a compact stub — route manually by question shape.

Skip start-research only for: production incidents (latency matters) and simple one-shot fact checks (overhead outweighs the brief). The Matching depth to stakes table below marks these rows.

1. Search — from the brief's primary_branch

Feed the brief's keyword_seeds into your first web-search call. Pick scope:

  • "web" (default) for spec / bug / pricing / CVE / changelog / API
  • "reddit" for sentiment / migration / lived-experience (server appends site:reddit.com and filters to post permalinks)
  • "both" only when opinion-heavy AND needs official sources (2× cost — don't default to this)

Write up to 50 queries per call. Orthogonal facets, not paraphrases. Exact error messages in quotes. Official docs with site:. Comparisons. Failure modes. Year-pinned queries. Negative signal on reddit scope ("regret", "switched from", "broke in production") — at least 25% of reddit queries.

2. Read what matters

After search, scrape the 3–10 most promising URLs with scrape-links. Mix reddit post permalinks + non-reddit URLs freely in one call — auto-detection routes reddit URLs through the Reddit API (threaded post + full comment tree); everything else flows through the HTTP scraper in parallel. Prefer contextually grouped batches — fire multiple parallel scrape-links calls when URL sets are unrelated (docs in one call, reddit threads in another).

Your extract instructions determine quality:

  • Strong: "root cause|fix steps|version affected|workarounds|breaking changes|migration path"
  • Weak: "tell me about this page"

Use 4–8 pipe-separated targets per call.

3. Loop — harvest from classifier + scrape output

Each web-search response includes ## Gaps (open questions with ids) and ## Suggested follow-up searches (refine queries tied to gap ids). Each scrape-links response includes ## Follow-up signals (new terms + referenced-but-unscraped URLs). Feed these into round 2's web-search. Safe to fire orthogonal web-search or scrape-links calls in parallel within one turn — use for unrelated subtopics.

4. Verify what matters

Cross-check any claim that could change your recommendation. Stop when additional calls stop changing your conclusion AND every brief stop_criteria item is met AND every gaps_to_watch item is closed (or explicitly documented as unresolved).

Matching depth to stakes

SituationTypical path
Quick fact checkweb-search (5 queries, skip planner) → scrape-links 2–3 URLs
Error diagnosisstart-researchweb-search scope:"web" (error in quotes) → scrape-links top 3–5
Library comparisonstart-researchweb-search scope:"web" (30 queries, 5 facets) → scrape-links on docs + benchmarks
Migration / sentimentstart-research (→ primary_branch:"reddit") → web-search scope:"reddit"scrape-links on post permalinks
Architecture decisionstart-research (→ often primary_branch:"both") → parallel web-search (web + reddit) → merged scrape-links
Production incidentweb-search (3 queries, skip planner for speed) → scrape-links top 2–3

Read references/workflows.md for complete workflow templates covering bug fixes, library comparisons, architecture decisions, security audits, performance investigations, and more.

Output formats

Decisions: Comparison table + recommendation + confidence + conditions that change the answer + counter-arguments section (objection in bold, evidence-backed response).

Bug fixes: Likely root cause with evidence + before → after fix + caveats + fallback. Start with immediate stabilization (what to deploy in 15 minutes).

Evaluations: Options ranked by fit + "best for [scenario A]" vs "best for [scenario B]" + specific risks per option.

All output: cite sources with specificity — Reddit usernames and dates, GitHub issue numbers, blog authors and dates, version numbers. u/jsmith (Mar 2025, r/node): "exact quote" is a citation. "Reddit consensus" is not.

Read references/synthesis.md for source credibility hierarchy, contradiction resolution, and verification checklists.


Multi-Agent Orchestrator Path

You are the orchestrator. You do not research. You architect research missions, dispatch researcher agents, collect findings, and synthesize into structured documentation.

Read references/orchestrator-philosophy.md before your first dispatch.

Phase 0: Understand the request (max 3 questions)

Clarify what the user needs. "What will you DO with this research?" (always). "Areas you already know vs. need explored?" (broad scope). "Target audience?" (when format matters). Skip if already answered.

Phase 1: Explore context (orchestrator does this)

Before designing missions: read project docs, existing research, architecture files. Run a quick web-search (5-10 queries) to map the landscape. Capture existing knowledge, gaps, and user context. This feeds Phase 2.

Phase 2: Design the research architecture

2a. Research Domains — Decompose into 3-8 non-overlapping domains. Each becomes one researcher agent. Include at least one community/practitioner domain and one cross-cutting concerns domain.

2b. Output Architecture — Design the documentation tree BEFORE dispatching. Use numbered files (01-topic.md). Each file independently useful. Read references/output-architecture.md for naming and structure patterns.

2c. Agent-to-Output Mapping — Map each agent to specific output files. Present the full architecture to the user before dispatching.

Phase 3: Write mission briefs

Each brief contains: Context Block (dense prose, 200-500 words), Mission Objective (observable end-state), Research Guidance (URLs, search angles, extraction fields, ceilings not floors), Definition of Done (BSV: Binary, Specific, Verifiable), Handback Format. Read references/mission-prompt-templates.md.

Always include the fallback chain: "If MCP tools fail, use WebFetch/WebSearch. If those fail, use curl."

Phase 4: Dispatch researcher wave

Launch ALL agents in a single message. Config: subagent_type: "internet-researcher", mode: "bypassPermissions", run_in_background: true. Max 8 agents per wave. Name each descriptively.

Phase 5: Collect and write

Write docs as agents complete — do not wait for all. Extract structured research, preserve source attribution, mark tasks complete.

Phase 6: Handle failures

Read references/quality-gates.md for decision rules. Tool denial → relaunch with bypassPermissions + fallback. Shallow output → follow-up with specific gaps. Timeout → relaunch with narrowed scope. Max 2 retries per domain.

Phase 7: Synthesize

Read ALL docs personally. Create master summary (00-master-summary.md) with document index, critical findings, cross-domain insights, action items, and coverage scope. Read references/synthesis-patterns.md.

The orchestrator reads everything personally. No subagent-of-subagent chains for synthesis.

Reference routing

FileRead when
references/tools.mdSingle-agent: tool parameters and usage patterns
references/workflows.mdSingle-agent: step-by-step workflows for common scenarios
references/synthesis.mdSingle-agent: source credibility, contradiction resolution, output patterns
references/orchestrator-philosophy.mdMulti-agent: mindset for writing mission briefs
references/mission-prompt-templates.mdMulti-agent: writing researcher agent prompts
references/output-architecture.mdMulti-agent: documentation tree design and file naming
references/quality-gates.mdMulti-agent: handling failures, retry vs proceed
references/synthesis-patterns.mdMulti-agent: cross-domain synthesis and master summary

Guardrails

  • Query diversity > query volume. Five angles beats fifty paraphrases.
  • Negative signal reveals truth. Always search for failures alongside recommendations.
  • Never treat search snippets as evidence (they're leads — scrape to verify).
  • Never more than 8 researcher agents per wave, 2 retries per domain.
  • Always design output architecture BEFORE dispatching agents.
  • The orchestrator reads ALL agent output personally — no delegation of synthesis.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.12%
按下载量换算96

Claude

33.42%
按下载量换算94

Cursor

18.14%
按下载量换算51

Gemini CLI

9.07%
按下载量换算25

安全审计

Gen Agent Trust Hub

可疑

Socket

可疑

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills