Claude-skill-registry elsevier-skill

Use Elsevier APIs (Scopus search / abstract / author / trends / institution / open access) via simple CLI scripts.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/elsevier-skill" ~/.claude/skills/majiayu000-claude-skill-registry-elsevier-skill && rm -rf "$T"
manifest: skills/data/elsevier-skill/SKILL.md
source content

Requirements

  • Set environment variable
    ELSEVIER_API_KEY
    .

What this skill can do

  • Search papers (Scopus)
  • Fetch abstract by EID or DOI
  • Fetch author profile
  • Analyze trends by year
  • Count institution papers
  • Search open access papers

How to run (scripts)

All commands print JSON to stdout.

Search papers

python scripts/elsevier.py search_papers --query "machine learning" --count 5 --year 2024

Get abstract

python scripts/elsevier.py get_paper_abstract --doi "10.1016/j.artint.2023.103804"

Get author info

python scripts/elsevier.py get_author_info --author_id "12345678900"

Analyze trends

python scripts/elsevier.py analyze_research_trends --field "artificial intelligence" --years 2022 2023 2024

Institution papers

python scripts/elsevier.py get_institution_papers --institution "MIT" --year 2024

Open access search

python scripts/elsevier.py search_open_access_papers --field "quantum computing" --count 5 --year 2024