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

deep-research深入研究

Agent Skill

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

总安装

218

周安装

9

GitHub Stars

3

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/kortix-ai/kortix-registry --skill deep-research

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合根据关键词或任务场景快速定位候选结果。
  • 可结合来源仓库和 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态及是否涉及网络或文件操作。
  • deep-research 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Deep Research

Systematic, evidence-based research that produces cited, source-backed reports. Uses the filesystem as working memory -- scraped content, extracted notes, and source metadata are saved to disk rather than held in context. This keeps the context window lean and makes research resumable, searchable, and reusable.

Architecture

research/{topic-slug}/
  plan.md                    # Research plan with sub-questions
  sources-index.md           # URL registry: what's been scraped, metadata
  sources/                   # Raw scraped content (one file per source)
    001-source-slug.md
    002-source-slug.md
    ...
  notes/                     # Extracted findings per sub-question
    question-1.md
    question-2.md
    ...
  report.md                  # Final compiled report

Core principle: Write to disk aggressively, read back selectively. Never hold raw scraped content in context longer than it takes to extract findings. The LLM context should contain only the current working set -- not the entire research corpus.

Research Parameters

  • Breadth (default: 3): Parallel search queries per sub-question. Range: 2-6.
  • Depth (default: 2): Recursive deepening rounds. Range: 1-4.

Estimate: breadth=3, depth=2 -> ~12-20 web searches, ~8-15 pages read, 3-8 minute runtime.

For quick fact-checks: breadth=2, depth=1. For exhaustive reviews: breadth=5, depth=3.

Step-by-Step Workflow

Phase 0: Initialize

  1. Create the research directory: mkdir -p research/{topic-slug}/sources research/{topic-slug}/notes
  2. Search local filesystem first. Before any web search, check if relevant content already exists:

- Past research in research/ directories in the working directory - Relevant files in the working directory or project - Use grep, glob, or semantic search (lss) as appropriate for the task - If prior research exists on this topic, read it and build on it -- don't start from scratch

  1. Initialize sources-index.md: # Sources Index | # | URL | Title | Date | Type | Credibility | File | |---|-----|-------|------|------|-------------|------|

Phase 1: Planning

  1. Analyze the query. Identify:

- Core research question(s) - Required evidence types (empirical data, expert opinion, primary sources, statistics) - Potential biases to watch for

  1. Decompose into 2-5 independently researchable sub-questions.
  2. Write plan.md with the sub-questions, search strategy, and scope decisions.
  3. Create a todo list tracking each sub-question.

Phase 2: Search-Read-Extract Loop

For each sub-question, execute this loop:

2a. Generate Search Queries

Generate breadth distinct queries. Vary:

  • Phrasing (synonyms, technical vs. lay terms)
  • Angle (supporting evidence, counter-evidence, meta-analyses)
  • Source type (academic site:scholar.google.com, government site:gov, news, industry)
  • Recency (add year filters for time-sensitive topics)

Batch search with search_depth: "advanced":

web-search("query1 ||| query2 ||| query3", search_depth="advanced")

2b. Read and Extract

For each promising search result:

  1. Check sources-index.md first. If the URL is already scraped, skip it. Do not re-scrape pages already processed in this session.
  2. Scrape the page. Batch URLs for efficiency: scrape-webpage("url1, url2, url3")
  3. Save raw content to disk immediately: # Write scraped content to sources/NNN-slug.md Include a header with the URL, title, and scrape date. This gets the raw content out of your context.
  4. Extract key findings from the scraped content and append to notes/question-N.md:

- Key claims and findings (with brief quotes when important) - Data points: numbers, statistics, dates - The source number (for citation mapping later) - Methodology notes if relevant (sample size, study design)

  1. Update sources-index.md with the new source entry: | 003 | https://example.com/article | Article Title | 2025-06-15 | news | medium | sources/003-article-title.md |
  2. Free your context. After extracting findings and saving to disk, you do not need to retain the raw scraped content. Move on to the next source.

2c. Deepen (Recursive)

After processing results for a sub-question:

  1. Read notes/question-N.md to assess coverage.
  2. Identify gaps: what remains unanswered? What claims lack corroboration?
  3. Generate follow-up questions based on findings.
  4. If depth > 0: recurse with follow-up questions at depth - 1 and ceil(breadth / 2).
  5. If depth == 0: stop, move to next sub-question.

Phase 3: Synthesis

After all sub-questions are researched:

  1. **Read all notes/*.md files** (not raw sources -- the notes are already distilled).
  2. Cross-reference claims -- flag where sources agree vs. contradict.
  3. Resolve contradictions by source quality:

- Peer-reviewed > government data > industry reports > news > blogs - Meta-analyses > individual studies - Multiple independent sources > single source

  1. Identify consensus vs. uncertainty. Be explicit about what is well-established vs. debated vs. unknown.
  2. Check for bias: Did search results skew toward one viewpoint? Are key perspectives missing?

Phase 4: Report Generation

Compile report.md using findings from notes and metadata from sources-index.md.

# [Research Title]

## Executive Summary
[2-3 paragraph overview of key findings and conclusions]

## Key Findings

### [Finding 1 Title]
[Discussion with inline citations [1][2]]

### [Finding 2 Title]
[Discussion with inline citations [3][4]]

## Analysis
[Cross-cutting patterns, contradictions, consensus areas]

## Limitations & Caveats
[What this research couldn't determine, methodological limitations]

## Conclusions
[Evidence-based conclusions with confidence levels]

## Sources

[1] Author (Date). "Title." *Publication*. URL
[2] Author (Date). "Title." *Publication*. URL

Build citations from sources-index.md at report time. During the search phase, you only needed to track {url, title, source_number}. Now format the full bibliography by reading back source metadata from the index and source files as needed.

Phase 5: Finalize

  1. Save report.md in the research directory.
  2. Report to user: main conclusions (2-3 sentences), number of sources, confidence levels, file path.

Citation Rules

  1. Every factual claim must have a citation. No uncited assertions of fact.
  2. Use numbered inline citations [1], [2] that map to the Sources section.
  3. Never fabricate sources. Every URL in Sources must be a real page you actually visited and read.
  4. Quote directly when the exact wording matters. Use > blockquote for direct quotes.
  5. Distinguish levels of evidence:

- "Studies show..." (cite the studies) - "According to [Source]..." (single source, acknowledge it) - "The evidence suggests..." (multiple corroborating sources) - "It remains debated whether..." (conflicting evidence)

  1. Date every source. If no date is found, write "(n.d.)".
  2. Note source type in the bibliography: academic paper, government report, news article, blog post, etc.

Scientific Rigor Standards

  • Falsifiability: Actively search for counter-evidence. Don't just confirm priors.
  • Replication: A claim supported by multiple independent sources is stronger than one from a single source.
  • Recency awareness: Newer isn't always better. Note when older foundational work is more relevant.
  • Correlation vs. causation: Flag when sources conflate the two.
  • Sample size and methodology: Note these for empirical claims.
  • Conflicts of interest: Note when a source has a stake in its conclusions.

Tool Usage Patterns

Search (always use search_depth "advanced" for deep research)

web-search("topic aspect1 ||| topic aspect2 ||| topic counter-evidence", search_depth="advanced")

Scrape (batch URLs)

scrape-webpage("https://source1.com/article, https://source2.com/study")

Save scraped content to disk

# After scraping, immediately write to file and extract findings
# This is critical -- do not hold raw scraped content in context

Academic Paper Search (OpenAlex)

Load the openalex-paper-search skill for full API reference. Quick patterns:

# Find highly-cited papers on a topic
curl -s "https://api.openalex.org/works?search=topic+keywords&filter=cited_by_count:>50,type:article,has_abstract:true&sort=cited_by_count:desc&per_page=15&select=id,display_name,publication_year,cited_by_count,doi,authorships,abstract_inverted_index&mailto=agent@kortix.ai"

# Find recent preprints
curl -s "https://api.openalex.org/works?search=topic&filter=type:preprint,publication_year:2025&sort=publication_date:desc&per_page=10&mailto=agent@kortix.ai"

# Find review/survey papers
curl -s "https://api.openalex.org/works?search=topic&filter=type:review,cited_by_count:>20&sort=cited_by_count:desc&per_page=10&mailto=agent@kortix.ai"

# Follow citation chains: who cites a seminal paper?
curl -s "https://api.openalex.org/works?filter=cites:WORK_ID&sort=cited_by_count:desc&per_page=10&mailto=agent@kortix.ai"

Save paper metadata to sources-index.md and raw API responses to sources/ for later processing.

Web Source Hunting

web-search("topic site:scholar.google.com ||| topic site:arxiv.org ||| topic systematic review OR meta-analysis", search_depth="advanced")

Data Source Hunting

web-search("topic statistics site:data.gov ||| topic data site:worldbank.org ||| topic survey results", search_depth="advanced")

Fact-Checking Pattern

web-search("claim fact check ||| claim evidence ||| claim debunked OR confirmed", search_depth="advanced")

Local FS Search (check before web search)

# Search past research
grep -r "keyword" research/

# Semantic search if available
lss "research question" -p /workspace --json -k 10

Handling Edge Cases

  • No good results found: State what was searched and that evidence is lacking. This is a valid finding.
  • Highly technical topics: Search for both technical papers and accessible explainers.
  • Rapidly evolving topics: Prioritize recency. Note publication dates prominently.
  • Controversial topics: Present all major viewpoints with evidence. Don't editorialize.
  • Paywalled sources: Extract what's available from abstracts and secondary reporting. Note when full text was not accessible.
  • Resuming prior research: If a research directory already exists, read the existing plan, notes, and sources-index. Continue from where the previous session left off rather than starting over.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.99%
按下载量换算24

Claude

31.39%
按下载量换算22

Cursor

16.56%
按下载量换算12

Gemini CLI

9.65%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills