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

literature-gap-finder文献差距查找器

Agent Skill

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

总安装

294

周安装

12

GitHub Stars

4

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/data-wise/claude-plugins --skill literature-gap-finder

简介

用于识别特定研究主题下的知识空白区域。

  • 适合结合关键词共现与引文网络发现未充分探索方向。
  • 可生成待研究课题列表与研究假设草案。literature-gap-finder 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 需说明所用分析方法与置信度评估标准。
  • 输出结果应包含可行性初步判断与所需资源预估。

SKILL.md

Literature Gap Finder

Systematic framework for identifying research opportunities in statistical methodology

Use this skill when: positioning research contributions, finding gaps in methodology literature, identifying unexplored combinations of methods and settings, building literature reviews, or deciding on research directions.


The Gap-Finding Framework

What Makes a Good Research Gap?

A publishable gap must be:

  1. Real - Not already addressed (check thoroughly!)
  2. Important - Solves a problem researchers face
  3. Tractable - Can be solved with available tools
  4. Novel - Provides new insight, not just combination
  5. Timely - Relevant to current research trends

Types of Gaps

Gap TypeDescriptionExample
Method GapNo method exists for settingNo mediation analysis for network data
Theory GapMethod exists but lacks theoryBootstrap for mediation lacks consistency proof
Efficiency GapMethods exist but are inefficientDoubly robust mediation more efficient
Robustness GapMethods fail under violationsMediation under measurement error
Computational GapExisting methods don't scaleMediation with high-dimensional confounders
Extension GapExisting method needs generalizationBinary → continuous mediator

Method-Setting Matrix

Systematic Gap Identification Framework

The method-setting matrix is the core tool for finding research gaps systematically:

# Build a method-setting matrix programmatically
create_gap_matrix <- function() {
  methods <- c("Regression", "Weighting/IPW", "DR/AIPW", "TMLE", "ML-based")
  settings <- c("Binary treatment", "Continuous treatment",
                "Time-varying", "Clustered", "High-dimensional",
                "Measurement error", "Missing data", "Network")

  matrix_data <- expand.grid(method = methods, setting = settings)
  matrix_data$status <- "unknown"  # To be filled: "developed", "partial", "gap"
  matrix_data$priority <- NA
  matrix_data$references <- ""

  matrix_data
}

# Visualize the gap matrix
visualize_gaps <- function(gap_matrix) {
  library(ggplot2)

  ggplot(gap_matrix, aes(x = method, y = setting, fill = status)) +
    geom_tile(color = "white") +
    scale_fill_manual(values = c(
      "developed" = "#2ecc71",
      "partial" = "#f39c12",
      "gap" = "#e74c3c",
      "unknown" = "#95a5a6"
    )) +
    theme_minimal() +
    labs(title = "Method × Setting Gap Matrix",
         x = "Method", y = "Setting") +
    theme(axis.text.x = element_text(angle = 45, hjust = 1))
}

Verification Process

Confirming a Gap is Real

Before claiming a gap, verify systematically:

StepActionTools
1Search major databasesGoogle Scholar, Web of Science, Scopus
2Search preprint serversarXiv, bioRxiv, SSRN
3Search R packagesCRAN, GitHub, R-universe
4Check conference proceedingsICML, NeurIPS, JSM, ENAR
5Search dissertationsProQuest, university repositories
6Email domain experts2-3 experts for confirmation
# Systematic verification checklist
verify_gap <- function(topic, keywords) {
  checklist <- list(
    databases_searched = c("google_scholar", "web_of_science", "pubmed", "scopus"),
    search_terms = keywords,
    date_range = paste(Sys.Date() - 365*5, "to", Sys.Date()),
    results = list(
      papers_found = 0,
      closest_related = c(),
      why_not_the_same = ""
    ),
    expert_consultation = list(
      experts_contacted = c(),
      responses = c()
    ),
    verification_status = "pending"  # pending, confirmed, rejected
  )

  checklist
}

# Document the verification
document_verification <- function(gap_description, search_log) {
  cat("## Gap Verification Report\n\n")
  cat("**Gap:**", gap_description, "\n\n")
  cat("**Search Date:**", as.character(Sys.Date()), "\n\n")
  cat("**Databases Searched:**\n")
  for (db in search_log$databases_searched) {
    cat("- ", db, "\n")
  }
  cat("\n**Search Terms:**", paste(search_log$search_terms, collapse = ", "), "\n")
  cat("\n**Conclusion:**", search_log$verification_status, "\n")
}

Priority Ranking

Scoring Research Gaps

CriterionWeightScore 1-5
Impact (how many benefit?)0.25___
Novelty (how new?)0.20___
Tractability (can we solve it?)0.20___
Timeliness (is it hot now?)0.15___
Fit (matches our expertise?)0.10___
Publication potential0.10___

Priority Score = Σ(weight × score)

# Priority scoring function
score_research_gap <- function(
  impact,        # 1-5: How many researchers would benefit
  novelty,       # 1-5: How new/original is this
  tractability,  # 1-5: How likely can we solve it
  timeliness,    # 1-5: Is this currently hot
  fit,           # 1-5: Matches our expertise
  publication    # 1-5: Publication potential
) {
  weights <- c(0.25, 0.20, 0.20, 0.15, 0.10, 0.10)
  scores <- c(impact, novelty, tractability, timeliness, fit, publication)

  priority <- sum(weights * scores)

  list(
    priority_score = priority,
    interpretation = case_when(
      priority >= 4.0 ~ "High priority - pursue immediately",
      priority >= 3.0 ~ "Medium priority - develop further",
      priority >= 2.0 ~ "Low priority - back burner",
      TRUE ~ "Skip - not worth pursuing"
    ),
    breakdown = data.frame(
      criterion = c("Impact", "Novelty", "Tractability",
                   "Timeliness", "Fit", "Publication"),
      weight = weights,
      score = scores,
      weighted = weights * scores
    )
  )
}

# Compare multiple gaps
rank_gaps <- function(gaps_list) {
  scores <- sapply(gaps_list, function(g) g$priority_score)
  order(scores, decreasing = TRUE)
}

Method × Setting Matrix

The Core Framework

Systematically map methods against settings to find gaps:

                    METHODS
          │ Regression │ Weighting │ DR/TMLE │ ML-based │
──────────┼────────────┼───────────┼─────────┼──────────│
Binary A  │     ✓      │     ✓     │    ✓    │    ✓     │
Continuous│     ✓      │     ?     │    ✓    │    ?     │
SETTINGS  ├────────────┼───────────┼─────────┼──────────│
Time-vary │     ?      │     ✓     │    ✓    │    ✗     │
Clustered │     ✓      │     ?     │    ?    │    ✗     │
High-dim  │     ✗      │     ✗     │    ?    │    ✓     │

✓ = Well-developed    ? = Partial/emerging    ✗ = Gap

Building Your Matrix

Step 1: Identify Dimensions

For mediation analysis:

DimensionVariations
TreatmentBinary, continuous, multi-level, time-varying
MediatorSingle, multiple, high-dimensional, latent
OutcomeContinuous, binary, count, survival, longitudinal
ConfoundingMeasured, unmeasured, time-varying
StructureSingle mediator, parallel, sequential, moderated
DataCross-sectional, longitudinal, clustered, network
AssumptionsStandard, relaxed positivity, measurement error

Step 2: List Methods

Method FamilySpecific Methods
RegressionBaron-Kenny, product of coefficients, difference
WeightingIPW, MSM, sequential g-estimation
Doubly RobustAIPW, TMLE, cross-fitted
SemiparametricInfluence function-based
BayesianMCMC, variational
Machine LearningCausal forests, DML, neural
BoundsPartial identification, sensitivity

Step 3: Fill and Analyze

Mark each cell:

  • ✓ (green): Well-established with theory + software
  • ? (yellow): Emerging or partial coverage
  • ✗ (red): Clear gap

Example: Sequential Mediation Matrix

                         │ Product │ Weighting │ DR │ Bounds │
─────────────────────────┼─────────┼───────────┼────┼────────│
2 mediators, linear      │    ✓    │     ✓     │  ✓ │   ?    │
2 mediators, nonlinear   │    ?    │     ✓     │  ? │   ✗    │
3+ mediators, linear     │    ?    │     ?     │  ✗ │   ✗    │
3+ mediators, nonlinear  │    ✗    │     ?     │  ✗ │   ✗    │
With measurement error   │    ✗    │     ✗     │  ✗ │   ✗    │
With unmeasured conf.    │    ✗    │     ✗     │  ✗ │   ?    │

Gaps identified:

  • DR methods for 3+ mediators
  • Any method with measurement error
  • Bounds approach underdeveloped

Assumption Relaxation Trees

The Framework

Map how assumptions have been relaxed over time:

                    Standard Mediation (Baron-Kenny 1986)
                              │
            ┌─────────────────┼─────────────────┐
            ↓                 ↓                 ↓
    No unmeasured      Linearity         No interaction
    confounding        assumed           assumed
            │                 │                 │
            ↓                 ↓                 ↓
    ┌───────┴───────┐   Nonparametric    VanderWeele
    ↓               ↓     (Imai 2010)    4-way decomp
Sensitivity      Bounds                        │
(Imai 2010)   (partial ID)                    ↓
    │               │               Multiple mediators?
    ↓               ↓               Longitudinal?
 E-value        Sharp bounds?       Measurement error?
(Ding 2016)         │                    │
    │               ↓                    ↓
    ↓           [YOUR GAP?]         [YOUR GAP?]
[YOUR GAP?]

Building the Tree

Step 1: Identify Original Assumptions

For a classic method, list ALL assumptions:

  1. Explicit assumptions (stated in paper)
  2. Implicit assumptions (unstated but required)
  3. Computational assumptions (required for implementation)

Step 2: Trace Relaxation History

For each assumption, find papers that:

  • Relax it partially
  • Relax it completely
  • Replace it with different assumption
  • Show consequences of violation

Step 3: Find Unexplored Branches

Look for:

  • Combinations of relaxations not yet explored
  • Relaxations in one method not applied to another
  • Partial relaxations that could be completed

Example: Positivity Assumption

Positivity: P(A=a|X) > ε > 0 for all a, x
                    │
    ┌───────────────┼───────────────┐
    ↓               ↓               ↓
Near-violation  Practical      Structural
                positivity      violations
    │               │               │
    ↓               ↓               ↓
Trimming      Overlap         Extrapolation
weights       assessment       methods
    │               │               │
    ↓               ↓               ↓
Truncation?   Diagnostics?   Bounds under
                             violations?

Citation Network Analysis

Forward and Backward Searching

Backward: From recent key paper, trace citations:

  • What foundational papers are cited?
  • What parallel developments exist?
  • What's the intellectual lineage?

Forward: Using Google Scholar "Cited by":

  • Who has built on this work?
  • What extensions were made?
  • What gaps remain unaddressed?

Key Paper Identification

For any topic, identify:

CategoryDescriptionHow to Find
FoundationalOriginal method papersMost-cited, oldest
TextbookComprehensive treatmentsCitations across subfields
Recent reviewsState-of-the-art summaries"Review" in title, last 5 years
FrontierLatest developmentsTop journals, last 2 years
Your competitionGroups working on same gapRecent similar titles

Building a Citation Map

1986: Baron & Kenny [foundations]
        │
        ├──→ 1990s: SEM extensions
        │
        ├──→ 2004: Robins & Greenland [causal foundations]
        │           │
        │           ├──→ 2010: Imai et al. [sensitivity]
        │           │
        │           ├──→ 2010: VanderWeele [4-way]
        │           │           │
        │           │           └──→ 2015: Book [comprehensive]
        │           │
        │           └──→ 2014: Tchetgen [semiparametric]
        │
        └──→ 2020s: ML integration [frontier]

Gap Verification Checklist

Before claiming a gap, verify:

1. Literature Search

  • Searched Google Scholar with multiple keyword combinations
  • Searched arXiv stat.ME and stat.TH
  • Searched JSTOR for older statistics journals
  • Searched bioRxiv/medRxiv for preprints
  • Checked reference lists of review papers
  • Checked "cited by" for key papers

2. Terminology Check

  • Same concept might have different names in different fields
  • Checked econometrics terminology
  • Checked biostatistics terminology
  • Checked machine learning terminology
  • Checked psychology/SEM terminology

3. Adjacent Literature

  • Checked related but not identical settings
  • Method might exist for similar problem
  • Checked if general framework applies

4. Working Papers

  • Checked key authors' websites
  • Checked conference proceedings (JSM, ENAR)
  • Asked collaborators/experts

5. Final Verification

  • Gap is not addressed in supplementary materials
  • Gap is not "obvious" extension reviewers will dismiss
  • Gap is important enough to publish

Gap Characterization Template

When you identify a gap:

## Gap: [Brief Title]

### Setting
[Precise description of the setting where the gap exists]

### Current State
- **What exists**: [Methods that partially address this]
- **What works**: [Aspects of the problem already solved]
- **What fails**: [Where current methods break down]

### The Gap
- **Precise statement**: [What is missing]
- **Why it matters**: [Who needs this, for what applications]
- **Why it's hard**: [Technical challenges]

### Evidence of Gap
- [ ] Literature search documented
- [ ] No existing solution found
- [ ] Experts consulted (optional)

### Potential Approaches
1. [Approach 1]: [Brief description]
   - Pros: [Advantages]
   - Cons: [Challenges]

2. [Approach 2]: [Brief description]
   - Pros: [Advantages]
   - Cons: [Challenges]

### Related Work
- [Paper 1]: [How it relates, why it doesn't solve gap]
- [Paper 2]: [How it relates, why it doesn't solve gap]

### Contribution Positioning
"While [existing work] addresses [related problem], no method currently
handles [specific gap]. We propose [approach] which provides [properties]."

Common Gap Patterns in Mediation

Pattern 1: Data Structure Mismatch

Gap template: "[Method] assumes [simple structure], but in [application] data has [complex structure]"

Examples:

  • Methods assume iid, but data is clustered
  • Methods assume cross-sectional, but data is longitudinal
  • Methods assume complete data, but missingness exists

Pattern 2: Assumption Violation

Gap template: "[Method] requires [assumption], which is violated when [situation]"

Examples:

  • Unmeasured mediator-outcome confounding
  • Measurement error in mediator
  • Treatment-mediator interaction

Pattern 3: Estimand Ambiguity

Gap template: "When [complication], standard estimands [NDE/NIE] are not well-defined or interpretable"

Examples:

  • Post-treatment confounding
  • Time-varying treatments/mediators
  • Multiple versions of treatment

Pattern 4: Efficiency vs Robustness

Gap template: "Efficient methods require [strong assumptions], while robust methods are inefficient"

Examples:

  • Doubly robust methods for mediation
  • Semiparametric efficiency in complex settings
  • Adaptive methods

Pattern 5: Computational Barrier

Gap template: "Theoretically valid approach exists but [computational limitation]"

Examples:

  • High-dimensional settings
  • Continuous mediators requiring integration
  • Bootstrap in complex models

Research Positioning Strategies

The Contribution Statement

Strong positioning formula:

"Although [Author Year] developed [method] for [setting], their approach [limitation]. In contrast, our method [advantage] while maintaining [property]. Specifically, we contribute: (1) [theoretical contribution], (2) [methodological contribution], (3) [practical contribution]."

Positioning Types

PositionWhen to UseExample Language
ExtensionBuild on existing"We extend [method] to [new setting]"
SynthesisCombine approaches"We unify [method A] and [method B]"
AlternativeDifferent approach"We propose an alternative that [advantage]"
CorrectionFix limitation"We address the limitation of [method]"
GeneralizationBroader framework"We develop a general framework that includes [special cases]"

Differentiation Matrix

DimensionCompetitor 1Competitor 2Our Method
SettingBinary A onlyAny AAny A
TheoryConsistency+ Normality+ Efficiency
AssumptionsStrongMediumWeaker
ComputationFastSlowMedium
SoftwareR packageNoneR + Python

Integration with Other Skills

This skill works with:

  • cross-disciplinary-ideation - Find solutions from other fields for identified gaps
  • method-transfer-engine - Transfer methods to fill gaps
  • identification-theory - Understand what assumptions are needed
  • methods-paper-writer - Write up the gap and solution

Key References

On Finding Research Gaps

  • Alvesson, M. & Sandberg, J. (2011). Generating research questions through problematization
  • Sandberg, J. & Alvesson, M. (2011). Ways of constructing research questions

Mediation Reviews (for gap identification)

  • VanderWeele, T.J. (2016). Mediation analysis: A practitioner's guide. Annual Review
  • Nguyen, T.Q. et al. (2021). Clarifying causal mediation analysis. Psychological Methods

Causal Inference Reviews

  • Hernán, M.A. (2018). The C-word: Scientific euphemisms do not improve causal inference
  • Imbens, G.W. (2020). Potential outcome and directed acyclic graph approaches

Version: 1.0 Created: 2025-12-08 Domain: Research Strategy, Literature Review

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.95%
按下载量换算37

Claude

27.67%
按下载量换算26

Cursor

18.62%
按下载量换算18

Gemini CLI

8.56%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills