From semantic-scholar
Maps the citation graph around a focal paper into foundations, descendants, bridges, weak edges, and optional second-hop links. Useful for understanding paper influence and lineage.
How this skill is triggered — by the user, by Claude, or both
Slash command
/semantic-scholar:trace-citations <focal-query> [--depth 1|2] [--max-references <n>] [--max-citations <n>] [--second-hop-limit <n>]<focal-query> [--depth 1|2] [--max-references <n>] [--max-citations <n>] [--second-hop-limit <n>]ExploreThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Map the citation graph around one focal paper into useful buckets.
examples.mdoutput_contract.mdreference.mdscripts/_shared/launcher.pyscripts/_vendor/semantic_scholar_skills/__init__.pyscripts/_vendor/semantic_scholar_skills/config.pyscripts/_vendor/semantic_scholar_skills/core/__init__.pyscripts/_vendor/semantic_scholar_skills/core/client.pyscripts/_vendor/semantic_scholar_skills/core/exceptions.pyscripts/_vendor/semantic_scholar_skills/core/requests.pyscripts/_vendor/semantic_scholar_skills/engine/__init__.pyscripts/_vendor/semantic_scholar_skills/engine/expand_references.pyscripts/_vendor/semantic_scholar_skills/engine/models.pyscripts/_vendor/semantic_scholar_skills/engine/paper_triage.pyscripts/_vendor/semantic_scholar_skills/engine/resolve.pyscripts/_vendor/semantic_scholar_skills/engine/scoring.pyscripts/_vendor/semantic_scholar_skills/engine/trace_citations.pyscripts/_vendor/semantic_scholar_skills/standalone/__init__.pyscripts/_vendor/semantic_scholar_skills/standalone/entrypoint.pyscripts/_vendor/semantic_scholar_skills/standalone/transport_stdlib.pyMap the citation graph around one focal paper into useful buckets. Use this when the human wants lineage, influence, and strong versus weak citation edges around a paper.
--depth 1|2 controls whether to expand a second hop from the strongest first-hop edges.--max-references <n> and --max-citations <n> cap the first-hop fetch sizes.--second-hop-limit <n> caps how many first-hop anchors get expanded at depth two.python scripts/run.py ....result.foundations for strong references behind the focal paper.result.direct_descendants for strong citing descendants.result.bridge_nodes for medium-confidence connectors with rich context or intent signal.result.weak_edges for low-signal edges that are probably less useful.depth=2, read result.second_hop only after the first-hop picture looks sensible.output_contract.md.CitationTraceResult.to_dict().result.reference_count_examined and result.citation_count_examined show the first-hop search breadth.npx claudepluginhub zongmin-yu/semantic-scholar-skillsTraverses backward (references) and forward (citing papers) citations via Semantic Scholar API, with query-relevant filtering, scoring, and deduplication. Use after finding relevant papers or for related work.
Performs deep research over Semantic Scholar's Graph API — references, recommendations, batch paper lookup (up to 500 IDs), snippet search, and multi-hop BFS citation graph traversal. Use for building citation networks, expanding literature seeds, finding related work, or resolving many DOI/arXiv/S2 IDs.
Expands 1-3 seed papers into a structured reading list with nearby, bridge, foundational, methodological, recent, and survey follow-ups using Semantic Scholar.