rseng-citation-hygiene

Solid

Covers verifying that every citation is real, correct and current: checking references in manuscripts, READMEs, references files and code metadata against Crossref and OpenAlex, screening cited DOIs against the Retraction Watch database, catching fabricated or mis-attributed citations (a documented AI failure mode), and keeping bibliographies and CITATION.cff files resolvable. Use PROACTIVELY before any bibliography, reference list or citation metadata is finalized or published, whenever the agent itself has produced citations, and when the user asks to check references, mentions broken DOIs, retracted papers or citation verification, or prepares a manuscript, README or software paper with references. (Making your own software citable is rseng-citation-metadata.)

Data & Documents 14 stars 2 forks Updated 4 days ago MIT

Install

View on GitHub

Quality Score: 83/100

Stars 20%
39
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Citation hygiene A citation is a checkable claim: this work exists, says what I say it says, and stands unretracted. All three parts fail routinely - and AI assistance has made the first failure mode systematic: language models fabricate plausible references with confident DOIs. An agent that produces or touches citations therefore has a special duty here, stated plainly: VERIFY EVERY CITATION YOU GENERATE against an authoritative source before handing it to the user, and say which were verified. No unverified reference should survive to a published artifact. rseng-citation-metadata covers making YOUR software citable; this skill covers the references you cite. ## Verify existence and metadata (Crossref, OpenAlex) For each reference with a DOI: - Resolve it: `curl -sI https://doi.org/<DOI>` - a failing DOI is either a typo or a fabrication; both are findings. - Fetch the registered metadata and compare with the citation as written: `https://api.crossref.org/works/<DOI>` (or the OpenAlex record at `https://api.openalex.org/works/doi:<DOI>` - open, keyless APIs). Title, authors, venue and year must match; a DOI that resolves to a DIFFERENT paper than the citation claims is the classic fabrication signature and worse than a dead link. - References without DOIs: search Crossref/OpenAlex by title and authors; if nothing plausible exists, flag it - books and grey literature can be legitimate, but only a human can vouch for them. - Batch the work: extract all...

Details

Author
fdiblen
Repository
fdiblen/rseng-agent-skills
Created
4 days ago
Last Updated
4 days ago
Language
Python
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

rseng-fact-checking

Covers verifying facts and sources at the content level: checking that a cited source actually contains and supports the claim it is cited for (claim-source alignment), assessing source trustworthiness (peer-review status, venue reputation, predatory-publishing signals, primary vs secondary), and flagging fabricated or misattributed support. Use PROACTIVELY whenever the agent itself asserts checkable facts or attaches sources to claims, and when the user asks to fact-check a document, verify that references support their claims, or assess whether a source is trustworthy. (rseng-citation-hygiene verifies references exist and are unretracted; rseng-research-integrity checks a document's own numbers.)

14 Updated 4 days ago
fdiblen
DevOps & Infrastructure Listed

verifying-citations

Use when a bibliography, reference list, or manuscript needs its citations checked before submission or before showing it to a supervisor, when any reference was drafted or suggested by an AI tool, when a reviewer questions whether a cited work exists or supports the claim made from it, or when references were copied between projects, formats, or citation managers.

0 Updated 3 weeks ago
URneiU1
Data & Documents Solid

rseng-citation-metadata

Covers making research software citable and contributors credited: writing CITATION.cff, describing software with CodeMeta (codemeta.json), minting DOIs and ORCIDs, and tracking contributors of every kind. Use when the user asks how to make software citable, add CITATION.cff or codemeta.json, obtain a DOI, ensure contributors get credit, or mentions CFF, CodeMeta, ORCID, CRediT or persistent identifiers. Use PROACTIVELY when generated code draws on a publication, website or existing code (credit it at the code site and in the references), at release preparation, and when citation files are edited. (Verifying references you cite: rseng-citation-hygiene; versioning schemes and the DOI-minting release: rseng-publishing-releasing.)

14 Updated 4 days ago
fdiblen