SKILL.md
Citation Alert Guide
A skill for setting up automated citation alerts and tracking systems that notify you when key papers are cited, new articles match your research interests, or important journals publish relevant work.
Alert Types and Platforms
Overview of Alert Systems
| Platform | Alert Type | Coverage | Cost |
|---|---|---|---|
| Google Scholar | Citation alert, keyword alert | Broadest, includes preprints | Free |
| Web of Science | Citation alert, search alert, journal ToC | WoS-indexed journals | Institutional |
| Scopus | Citation alert, search alert, author alert | Scopus-indexed journals | Institutional |
| PubMed | Email alert (My NCBI) | Biomedical literature | Free |
| OpenAlex | Work tracking, author profiles, concept feeds | All disciplines | Free |
| ResearchGate | Author follow, recommendation | Member-uploaded papers | Free |
Setting Up Google Scholar Alerts
Citation Alert (track who cites a specific paper):
1. Search for the paper in Google Scholar
2. Click "Cited by N" under the result
3. Click the envelope icon ("Create alert")
4. Enter your email address
5. You will receive an email when new papers cite this work
Keyword Alert (track new papers matching a query):
1. Go to scholar.google.com/scholar_alerts
2. Click "Create alert"
3. Enter your search query (use quotes for phrases)
4. Enter your email address
5. Choose frequency: as-it-happens or weekly digest
Building a Monitoring System
Structured Alerting Strategy
def design_alert_system(research_topics: list[str],
key_papers: list[str],
key_authors: list[str]) -> dict:
"""
Design a comprehensive literature monitoring system.
Args:
research_topics: Core research interest phrases
key_papers: DOIs or titles of seminal papers to track
key_authors: Names of researchers to follow
"""
system = {
"citation_alerts": {
"platform": "Google Scholar + Web of Science",
"items": [
{"paper": p, "reason": "Seminal work in my area"}
for p in key_papers
],
"frequency": "as-it-happens"
},
"keyword_alerts": {
"platform": "Google Scholar + PubMed",
"queries": research_topics,
"frequency": "weekly"
},
"author_alerts": {
"platform": "OpenAlex + Scopus",
"authors": key_authors,
"frequency": "monthly"
},
"journal_toc_alerts": {
"platform": "Web of Science or journal website",
"note": "Subscribe to table-of-contents for top 3-5 journals"
}
}
return system
