Agent skill

citation-chasing-mapping

Use when identifying seminal papers in a research field, mapping research lineage and intellectual heritage, discovering related work through reference tracking, or finding potential collaborators through co-citation analysis. Maps citation networks to trace research evolution, identify influential papers, and discover hidden connections in scientific literature. Supports systematic reviews, bibliometric analysis, and research planning through comprehensive citation tracking.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill citation-chasing-mapping --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 1.0
Allowed tools: ReadWriteBashEdit
Path: skills/analysis/citation-chasing-mapping/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Scientific Citation Network and Knowledge Mapper ## When to Use This Skill - identifying seminal papers in a research field - mapping research lineage and intellectual heritage - discovering related work through reference tracking - finding potential collaborators through co-citation analysis - tracking citation patterns to identify research trends - building literature reviews with comprehensive coverage ## Quick Start ```python from scripts.main import CitationChasingMapping # Initialize the tool tool = CitationChasingMapping() from scripts.citation_mapper import CitationNetworkMapper mapper = CitationNetworkMapper(data_source="PubMed") # Build citation network from seed paper network = mapper.build_network( seed_paper={ "pmid": "12345678", "title": "Breakthrough Discovery in Immunotherapy" }, backward_depth=2, # references of references forward_depth=2, # citing papers of citing papers max_papers=500 ) # Identify seminal papers seminal_papers = mapper.identify_seminal_works( network=network, min_citations=100, centrality_threshold=0.8 ) print(f"Found {len(seminal_papers)} highly influential papers:") for paper in seminal_papers[:5]: print(f" - {paper.title} (cited {paper.citat

What's inside
Steps it walks through
  1. When to Use This Skill
  2. Quick Start
  3. Core Capabilities
  4. 1. Build Comprehensive Citation Networks
  5. 2. Identify Seminal Works
  6. 3. Discover Research Clusters
  7. 4. Generate Interactive Visualizations
  8. Command Line Usage
  9. Best Practices
  10. Quality Checklist
  11. References
Ships with 1 file
  • metadata.json
Commands it runs
python scripts/main.py --seed-pmid 12345678 --depth 2 --max-papers 500 --output network.json --visualize
More from claude-skill-registry
All skills →
About this skill
What does the citation-chasing-mapping skill do?

Use when identifying seminal papers in a research field, mapping research lineage and intellectual heritage, discovering related work through reference tracking, or finding potential collaborators through co-citation analysis. Maps citation networks to trace research evolution, identify influential papers, and discover hidden connections in scientific literature. Supports systematic reviews, bibliometric analysis, and research planning through comprehensive citation tracking.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill citation-chasing-mapping --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 majiayu000/claude-skill-registry, a repository with 534 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