pipeline
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
Two-stage paper screening - abstract scoring then deep dive for specific data extraction
$ npx -y skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill evaluating-paper-relevance --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/evaluating-paper-relevanceContext preview
The summary Claude sees to decide when to auto-load this skill.
Two-stage paper screening - abstract scoring then deep dive for specific data extraction
name: Evaluating Paper Relevance description: Two-stage paper screening - abstract scoring then deep dive for specific data extraction when_to_use: After literature search returns results. When need to determine if paper contains specific data. When screening papers for relevance. When extracting methods, results, data from papers. version: 1.0.0
<!-- ╔══════════════════════════════════════════════════════════════╗ ║ 本文件为开源 Skill 原始文档,收录仅供学习与研究参考 ║ ║ CoPaper.AI 收集整理 | https://copaper.ai ║ ╚══════════════════════════════════════════════════════════════╝
来源仓库: https://github.com/kthorn/research-superpower 项目名称: research-superpower 开源协议: MIT License 收录日期: 2026-04-02
声明: 本文件版权归原作者所有。此处收录旨在为社会科学实证研究者 提供 AI Agent Skills 的集中参考。如有侵权,请联系删除。 -->
Two-stage screening process: quick abstract scoring followed by deep dive into promising papers.
**Core principle:** Precision over breadth. Find papers that actually contain the specific data/methods user needs, not just topically related papers.
Use this skill when:
**Small searches (<50 papers):**
**Large searches (50-150 papers):**
**Very large searches (>150 papers):**
**Goal:** Quickly identify promising papers
**Score 0-10 based on:**
**Decision rules:**
**IMPORTANT: Report to user for EVERY paper:**
📄 [N/Total] Screening: "Paper Title" Abstract score: 8 → Fetching full text...
or
📄 [N/Total] Screening: "Paper Title" Abstract score: 4 → Skipping (insufficient relevance)
**Never screen silently** - user needs to see progress happening
**Goal:** Extract specific data/methods from promising papers
**If paper describes medicinal chemistry / SAR data:**
Use `skills/research/checking-chembl` to check if paper is in ChEMBL database:
curl -s "https://www.ebi.ac.uk/chembl/api/data/document.json?doi=$doi"
**If found in ChEMBL:**
**Continue to full text fetch for context, methods, discussion.**
**Try in order:**
**A. PubMed Central (free full text):**
# Check if available in PMC curl "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pmc&term=PMID[PMID]&retmode=json" # If found, fetch full text XML via API curl "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/efetch.fcgi?db=pmc&id=PMCID&rettype=full&retmode=xml" # Or fetch HTML directly (note: use pmc.ncbi.nlm.nih.gov, not www.ncbi.nlm.nih.gov/pmc) curl "https://pmc.ncbi.nlm.nih.gov/articles/PMCID/"
**B. DOI resolution:**
# Try publisher link curl -L "https://doi.org/10.1234/example.2023" # May hit paywall - check response
**C. Unpaywall (MANDATORY if paywalled):** **CRITICAL: If step B hits a paywall, you MUST immediately try Unpaywall before giving up.**
Use `skills/research/finding-open-access-papers` to find free OA version:
curl "https://api.unpaywall.org/v2/DOI?email=USER_EMAIL" # Often finds versions in repositories, preprint servers, author copies # IMPORTANT: Ask user for their email if not already provided - do NOT use claude@anthropic.com
Report to user:
⚠️ Paper behind paywall, checking Unpaywall... ✓ Found open access version at [repository/preprint server]
or
⚠️ Paper behind paywall, checking Unpaywall... ✗ No open access version available - continuing with abstract only
**D. Preprints (direct):**
**If full text unavailable AFTER trying Unpaywall:**
**CRITICAL: Do NOT skip Unpaywall check. Many paywalled papers have free versions in repositories.**
**Focus on sections:**
📌 文档结构(2026-07-22 起): 本文件是中文默认入口 —— banner + badges + 信任面 + 9 阶段流水线速览 + 76 行合集总表。 每个合集的完整描述、按用途分组、精确数字、验证方法在 docs/CONTENT_ZH.md(扩展正文,总表行内的 → 直接跳转到对应锚点)。 English version: README-en.md · 中文扩展正文:docs/CONTENT_ZH.md · README-zh-CN.md 已弃用(重定向占位) 🌐 语言: English |
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
Use when the user asks to run a full empirical / causal analysis in Python — by default in the style of an applied economics paper (AER / QJE / JPE / ReStud /…
Classical end-to-end empirical analysis workflow in the traditional Python econometric stack — pandas + numpy + scipy + statsmodels + linearmodels + pyfixest +…
Classical end-to-end empirical analysis workflow in the traditional Stata ecosystem — native Stata + reghdfe + ivreg2 + csdid + did_imputation +…
Classical end-to-end empirical analysis workflow in the modern tidyverse + econometrics R ecosystem — dplyr + tidyr + haven + fixest + sandwich + lmtest +…
Systematic writing framework for philosophy and interdisciplinary academic papers from optimized outline to submission-ready manuscript. Use when users want…