skills/43-wentorai-research-plugins/skills/literature/discovery/semantic-paper-radar/SKILL.md
Semantic literature discovery and synthesis using embeddings
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research semantic-paper-radarInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
tools
Show mcp-stata identity, connected tools, and status. Use when the user asks if mcp-stata is available, asks about access to the toolkit, or asks what Stata tools are connected.
tools
Activate when users mention Stata commands, .do files, regressions, econometrics, stored results, graphs, dataset inspection, replication, or Stata errors. Route the task through mcp-stata tools and the specialized research skills instead of treating it as plain text coding.
development
Build and review paper-ready regression, balance, and summary tables from Stata outputs. Use when the user needs a clean table for a draft, appendix, or coauthor share-out.
tools
Install, configure, update, or verify mcp-stata across Claude Code, Codex, Gemini CLI, Cursor, Windsurf, and VS Code. Activate when users ask to set up the Stata toolkit or troubleshoot the installation.