skills/43-wentorai-research-plugins/skills/literature/discovery/citation-alert-guide/SKILL.md
Set up citation alerts and track new papers citing key references
npx skillsauth add brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research citation-alert-guideInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
| 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 |
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
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
Daily (5 minutes):
- Skim citation alert emails
- Star/flag relevant hits in your reference manager
Weekly (30 minutes):
- Review keyword alert digests
- Scan journal ToC for top 3 journals
- Add promising papers to "To Read" folder
Monthly (1 hour):
- Review author alerts for new publications from key groups
- Update keyword queries if your focus has shifted
- Prune alerts that are no longer relevant
When alerts generate too many results, refine your strategy:
1. Narrow keyword queries:
Before: "machine learning"
After: "machine learning" AND "protein folding"
2. Use field restrictions:
PubMed: "deep learning"[Title] AND "radiology"[MeSH]
3. Limit to high-impact sources:
Web of Science: Set alert with journal filter
4. Consolidate with an RSS reader:
- Export alerts to RSS where supported
- Use Feedly, Inoreader, or Zotero's feed reader
- Group feeds by topic for efficient scanning
Most reference managers support alert integration:
1. Run your search in PubMed
2. Click "Save" below the search bar
3. Sign in to My NCBI (free account)
4. Name your search
5. Set schedule: daily, weekly, or monthly
6. Set format: summary, abstract, or full
7. PubMed emails you new results matching your saved search
This is particularly valuable for systematic review updates, where you need to re-run the exact same search periodically to capture newly published studies.
development
Conduct rigorous thematic analysis (TA) of qualitative data following Braun and Clarke's (2006) six-phase framework. Use whenever the user mentions 'thematic analysis', 'TA', 'Braun and Clarke', 'qualitative coding', 'identifying themes', or asks for help analysing interviews, focus groups, open-ended survey responses, or transcripts to identify patterns. Also trigger for questions about inductive vs theoretical coding, semantic vs latent themes, essentialist vs constructionist epistemology, building a thematic map, or writing up a qualitative findings section. Covers all six phases, the four upfront analytic decisions, the 15-point quality checklist, and the five common pitfalls. Produces a Word document write-up and an annotated thematic map. Does NOT cover IPA, grounded theory, discourse analysis, conversation analysis, or narrative analysis — use a different method for those.
development
Guide users through writing a systematic literature review (SLR) following the PRISMA 2020 framework. Use this skill whenever the user mentions 'systematic review', 'systematic literature review', 'SLR', 'PRISMA', 'PRISMA 2020', 'PRISMA flow diagram', 'PRISMA checklist', or asks for help writing, structuring, or auditing a literature review that follows reporting guidelines. Also trigger when the user asks about inclusion/exclusion criteria for a review, search strategies for databases like Scopus/WoS/PubMed, study selection processes, risk of bias assessment, or narrative synthesis for a review paper. This skill covers the full PRISMA 2020 checklist (27 items), produces a Word document manuscript in strict journal article format, generates an annotated PRISMA flow diagram, and enforces APA 7th Edition referencing throughout. It does NOT cover meta-analysis or statistical pooling. By Chuah Kee Man.
testing
Performs placebo-in-time sensitivity analysis with hierarchical null model and optional Bayesian assurance. Use when checking model robustness, verifying lack of pre-intervention effects, or estimating study power.
data-ai
Fit, summarize, plot, and interpret a chosen CausalPy experiment. Use after the causal method has been selected, including when configuring PyMC/sklearn models and scale-aware custom priors.