Agent skill

semantic-scholar-recs-guide

Paper discovery via recommendation APIs (OpenAlex, CrossRef citation networks)

brycew6m4,252★ · +31/wk · 3 repos on radarProfile →
claude-codeNOASSERTION
Install
npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill semantic-scholar-recs-guide --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/43-wentorai-research-plugins/skills/literature/discovery/semantic-scholar-recs-guide/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 3,244
Language: Stata
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Paper Discovery via OpenAlex & CrossRef Leverage the OpenAlex and CrossRef APIs to discover related papers, traverse citation networks, and build comprehensive reading lists programmatically. ## Overview OpenAlex indexes over 250 million academic works and provides a free, no-key-required API that supports: - Work search by title, keyword, or DOI - Citation and reference graph traversal - Author profiles and publication histories - Concept-based discovery across disciplines - Institutional and venue filtering Base URL: `https://api.openalex.org` CrossRef URL: `https://api.crossref.org` ## Finding Related Papers Use OpenAlex's concept graph and citation data to discover related work from seed papers. ### Concept-Based Discovery ```python import requests HEADERS = {"User-Agent": "ResearchPlugins/1.0 (https://wentor.ai)"} WORK_ID = "W2741809807" # OpenAlex work ID # Get the seed paper's concepts response = requests.get( f"https://api.openalex.org/works/{WORK_ID}", headers=HEADERS ) paper = response.json() concepts = [c["id"] for c in paper.get("concepts", [])[:3]] # Find works sharing the same concepts, sorted by citations for concept_id in concepts: related = requests.get( "https:/

What's inside
Steps it walks through
  1. Overview
  2. Finding Related Papers
  3. Concept-Based Discovery
  4. CrossRef Subject-Based Discovery
  5. Citation Network Traversal
  6. Forward Citations (Who Cited This Paper?)
  7. Backward References (What Did This Paper Cite?)
  8. Building a Reading List Pipeline
  9. Best Practices
More from Auto-Empirical-Research-Skills
All skills →
About this skill
What does the semantic-scholar-recs-guide skill do?

Paper discovery via recommendation APIs (OpenAlex, CrossRef citation networks)

How do I install it?

Run `npx skills add brycewang-stanford/Auto-Empirical-Research-Skills --skill semantic-scholar-recs-guide --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From brycewang-stanford/Auto-Empirical-Research-Skills, a repository with 3,244 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going