alterlab-citation-mgmt — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited alterlab-citation-mgmt (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Manage citations systematically across the research and writing process: search academic databases (Google Scholar, PubMed), extract accurate metadata from multiple sources (CrossRef, PubMed, arXiv, DataCite), validate citation information, and generate properly formatted BibTeX. Critical for citation accuracy, avoiding reference errors, and reproducible research. Integrates with the literature-review skill.
Use when:
Citation management is a five-phase pipeline. Each phase maps to a script (full CLI in references/script_cli_reference.md) and a deep-dive reference.
Search Google Scholar (broad, cross-discipline) and PubMed (biomedical, MeSH-indexed).
python scripts/search_google_scholar.py "CRISPR gene editing" --limit 50 --output results.json
python scripts/search_pubmed.py "Alzheimer's disease treatment" --limit 100 --output alz.jsonOperators, MeSH/field tags, complex queries, and high-impact-paper heuristics: references/search_strategy_reference.md, references/google_scholar_search.md, references/pubmed_search.md.
Convert any identifier (DOI, PMID, arXiv ID, URL) to complete metadata. CrossRef is the primary DOI source; PubMed E-utilities, arXiv, and DataCite cover the rest.
python scripts/doi_to_bibtex.py 10.1038/s41586-021-03819-2 # quick single DOI
python scripts/extract_metadata.py --pmid 34265844 # any identifier type
python scripts/extract_metadata.py --input identifiers.txt --output citations.bib # batchSources and extracted fields: references/metadata_extraction.md and the Metadata Sources section of references/search_strategy_reference.md.
Generate clean, standardized entries. Common types: @article, @book, @inproceedings, @incollection, @phdthesis, @misc. Protect title capitalization with {}, use -- for page ranges, include a DOI for modern publications.
python scripts/format_bibtex.py references.bib --deduplicate --sort year --descending \
--output clean_references.bibEntry types, required fields, and formatting rules: references/bibtex_formatting.md.
Verify required fields are present, data is consistent, and there are no duplicates. DOI resolution is network-bound and OFF by default — add --check-dois to actually hit doi.org/CrossRef (slow). validate_citations.py reports only; it does not rewrite the file. To apply fixes (page dashes, author separators, dedup), run format_bibtex.py.
python scripts/validate_citations.py references.bib --check-dois \
--report validation.json --verboseValidation criteria and report format: references/citation_validation.md and the Validation Checks summary in references/search_strategy_reference.md.
Export validated BibTeX into a LaTeX manuscript (\bibliography{final_references}). Pairs with literature-review (search/synthesis), scientific-writing (manuscript references), and venue-templates (style-specific formatting).
End-to-end worked examples (build a bibliography, convert a DOI list, clean a messy .bib, find seminal papers): references/example_workflows.md.
Search: start broad then narrow; use multiple sources; leverage "Cited by" for seminal papers; document queries and dates.
Metadata: prefer DOIs (most reliable, best CrossRef metadata); verify author names, venue, and year; handle preprints (use the published version when one exists); keep author-name and journal-abbreviation formatting consistent.
BibTeX quality: meaningful citation keys (FirstAuthor2024keyword); protect title capitalization with {}; remove redundant fields; validate syntax regularly; organize per project and merge carefully to avoid duplicates.
Validation: validate early and often; fix broken DOIs and missing fields promptly; manually review critical citations.
format_bibtex.py.references/)script_cli_reference.md — full per-script features and CLI usageexample_workflows.md — four end-to-end worked workflowssearch_strategy_reference.md — high-impact heuristics, Scholar operators, MeSH/field tags, metadata sourcesgoogle_scholar_search.md — complete Google Scholar search guidepubmed_search.md — PubMed and E-utilities API documentationmetadata_extraction.md — metadata sources and field requirementscitation_validation.md — validation criteria and quality checksbibtex_formatting.md — BibTeX entry types and formatting rulesscripts/)search_google_scholar.py, search_pubmed.py, extract_metadata.py, validate_citations.py, format_bibtex.py, doi_to_bibtex.py.
assets/)bibtex_template.bib (example entries for all types), citation_checklist.md (QA checklist).
# Core
pip install requests bibtexparser biopython
# Optional: Google Scholar access, advanced validation, LaTeX char handling
pip install scholarly selenium crossref-commons pylatexencThis skill provides search (Scholar + PubMed), automated metadata extraction (DOI/PMID/ arXiv/URL), citation validation (DOI verification + completeness), BibTeX formatting and cleaning, and quality assurance — all reproducible through documented search and extraction methods. Use it to maintain accurate, publication-ready bibliographies.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.