用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill semantic-paper-radar命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | semantic-paper-radar |
| description | Semantic literature discovery and synthesis using embeddings |
| metadata | {"openclaw":{"emoji":"📡","category":"literature","subcategory":"discovery","keywords":["semantic search","embeddings","literature synthesis","paper discovery","vector search","knowledge mapping"],"source":"wentor-research-plugins"}} |
Traditional literature search relies on keyword matching—you find papers that contain the exact terms you search for. Semantic paper discovery goes further by understanding the meaning of research content and finding papers that are conceptually related, even when they use different terminology. This is especially powerful for interdisciplinary research, where the same idea may be expressed in completely different vocabularies across fields.
The Semantic Paper Radar skill provides methods for using embedding-based semantic search, vector databases, and AI-powered synthesis to build a comprehensive, continuously updated view of the literature relevant to your research. It enables you to discover papers you would never find through keyword search alone and to synthesize findings across large bodies of work.
This skill covers setting up a personal semantic search index over your paper collection, querying public semantic search APIs, and using LLM-powered analysis to extract themes and connections from clusters of related papers.
Semantic search represents both your query and each paper as dense numerical vectors (embeddings) in a high-dimensional space. Papers whose embeddings are close to your query's embedding are semantically similar, regardless of the specific words used.
Key components:
text-embedding-3-small work well for academic text.OpenAlex indexes 250M+ works and supports search queries across all disciplines:
# Search works via the OpenAlex API
curl "https://api.openalex.org/works?search=attention+mechanisms+for+graph+neural+networks&per_page=20"
The search endpoint uses relevance-ranked matching. Combine with concept filters and citation data for more targeted discovery. For true semantic matching, build a local embedding index (see below).
For deeper control, build a local semantic search index over your own paper collection:
import chromadb
from sentence_transformers import SentenceTransformer
# Initialize
model = SentenceTransformer("allenai/specter2")
client = chromadb.PersistentClient(path="./paper_index")
collection = client.get_or_create_collection(
name="my_papers",
metadata={"hnsw:space": "cosine"}
)
# Index a paper
abstract = "We propose a novel attention mechanism for graph neural networks..."
embedding = model.encode(abstract).tolist()
collection.add(
documents=[abstract],
embeddings=[embedding],
metadatas=[{"title": "Graph Attention v2", "year": 2025, "arxiv_id": "2501.xxxxx"}],
ids=["paper_001"]
)
# Query
results = collection.query(
query_embeddings=[model.encode("message passing in GNNs").tolist()],
n_results=10
)
This local index lets you search across all papers you have collected using natural language queries. As you add more papers, the index becomes a personalized discovery tool tuned to your specific research interests.
Use semantic search to expand your awareness beyond your current reading:
Semantic search excels at finding papers from other fields that address similar problems:
Set up periodic semantic searches to detect new papers in your area:
Once you have discovered a cluster of related papers, use AI-assisted synthesis to extract insights across the collection:
Feed the abstracts of a cluster of papers to an LLM and ask for:
Create a structured evidence map from your semantic cluster:
| Theme | Supporting Papers | Contradicting Papers | Strength of Evidence |
|---|---|---|---|
| Theme A | [1], [3], [7] | [5] | Strong |
| Theme B | [2], [4] | None | Moderate |
| Theme C | [6] | [1], [8] | Contested |
This provides a bird's-eye view of where consensus exists and where debates remain open.
Compare your research question against the semantic landscape of existing work. Regions of embedding space where your query falls but few papers exist represent potential research gaps—areas where your contribution would be most novel.