Citation Audit Skill
Purpose
Verify every citation in a manuscript against its actual source. LLMs
hallucinate citations, invent arXiv IDs, misattribute findings, and confuse
authors. This skill catches all of that by fetching and reading each cited
work.
Why This Exists
LLMs are unreliable with citations in three distinct ways:
- Ghost papers — The paper does not exist. Title, authors, or venue are
fabricated.
- Wrong metadata — The paper exists but the bib entry has the wrong arXiv
ID, wrong authors, wrong year, or wrong venue.
- Inverted claims — The paper exists and the bib is correct, but the
manuscript mischaracterizes what the paper says.
All three are invisible to structural audits (cross-reference checks,
compilation tests). They require reading the actual cited work.
Inputs
- The manuscript
.tex file(s)
- The
.bib file
- Web access (to fetch papers from arXiv, conference sites, URLs)
Execution
Phase 1: Extract citation contexts
For each \citep{}, \citet{}, \cite{} in the manuscript:
- Record the bib key
- Record the surrounding sentence or paragraph (the claim context)
- Classify the claim type:
- FACTUAL: "X et al. found Y" / "X et al. measured Y"
- METHODOLOGICAL: "We follow X" / "We use the benchmark from X"
- POSITIONAL: "Unlike X, we..." / "X does not measure..."
- PARENTHETICAL: "(X, 2024)" — no specific claim, just a reference
- For FACTUAL and POSITIONAL claims, extract the specific assertion the
manuscript makes about the cited work
Phase 2: Verify bib entry metadata
For each bib entry, verify against the actual source:
For arXiv papers (eprint field present):
- Fetch
https://arxiv.org/abs/{eprint_id}
- Compare: title, authors, year
- If the fetched paper has a DIFFERENT title/authors than the bib entry,
this is a WRONG ID or GHOST PAPER
For conference/journal papers (booktitle or journal field):
- Search for the paper by title + author on the web
- Verify: venue, year, author list
- If the paper cannot be found at the stated venue, flag as
UNVERIFIABLE or GHOST PAPER
For web resources (howpublished with URL):
- Fetch the URL
- Verify it loads and the content matches the described resource
- If the URL is dead or redirects to unrelated content, flag as
DEAD LINK
For each entry, check:
Phase 3: Verify claim accuracy
For each FACTUAL or POSITIONAL claim:
- Read the cited paper (abstract + relevant sections at minimum)
- Compare the manuscript's claim against what the paper actually says
- Classify:
- ACCURATE — The claim faithfully represents the cited work
- INACCURATE — The claim mischaracterizes the cited work
- INVERTED — The claim says the opposite of what the paper found
- OVERCLAIMED — The claim is stronger than what the paper supports
- UNDERCLAIMED — The cited work supports a stronger claim than stated
- UNVERIFIABLE — Cannot access the paper to verify
For INACCURATE and INVERTED findings, provide:
- What the manuscript claims
- What the cited paper actually says
- The specific section/page of the cited paper that contradicts the claim
- A suggested correction
Phase 4: Check for missing citations
Scan the manuscript for:
- Claims that cite no source but should (empirical claims without
attribution)
- Tools, benchmarks, or datasets mentioned by name without citation
- Methods described as "standard" or "well-known" that have a canonical
citation
Output Format
Per-citation report
### [bib_key] — [VERDICT]
**Bib entry:** [title] by [authors] ([year])
**Actual paper:** [actual title] by [actual authors] ([actual year])
**Metadata match:** title [✓/✗] | authors [✓/✗] | year [✓/✗] | venue [✓/✗]
**Claim in manuscript (line N):** "[exact text]"
**What the paper actually says:** "[summary of actual finding]"
**Claim accuracy:** [ACCURATE / INACCURATE / INVERTED / OVERCLAIMED / UNDERCLAIMED]
**Fix required:** [description of what needs to change, or "None"]
Summary table
| Bib Key | Exists | Metadata | Claim | Verdict |
|---------|--------|----------|-------|---------|
| key1 | ✓ | ✓ | ✓ | PASS |
| key2 | ✓ | ✗ | ✗ | FAIL |
| key3 | ✗ | — | — | GHOST |
Verdict categories
- PASS — Paper exists, metadata correct, claims accurate
- METADATA — Paper exists, bib entry has errors (wrong ID, wrong
authors, wrong year)
- CLAIM — Paper exists, metadata correct, but manuscript
mischaracterizes it
- GHOST — Paper does not exist as described
- DEAD — URL/link is broken
- UNVERIFIABLE — Cannot access the paper to verify
Severity
- CRITICAL: GHOST papers, INVERTED claims
- HIGH: Wrong arXiv IDs, wrong authors, INACCURATE claims
- MEDIUM: Wrong year, wrong venue, OVERCLAIMED
- LOW: Missing citations, incomplete bib entries, UNDERCLAIMED
Important notes
- NEVER trust your own knowledge of papers. ALWAYS fetch and verify.
Your training data contains hallucinated citations. The only way to
verify is to read the actual source.
- For arXiv papers, always fetch the abstract page to confirm the paper
exists and matches.
- For conference papers, search DBLP, ACM DL, or the conference site.
- WebFetch and WebSearch are your primary tools. Do not skip verification
because a citation "looks right."
- Blog posts and documentation URLs change. Always check that the URL
still works and points to the described content.
- When a bib entry has both an
eprint (arXiv ID) and a booktitle
(venue), verify both independently.
Phase 5: Fix (when invoked with "fix" or "on")
When the user invokes with an argument containing "fix" or "on", execute
Phases 1–4 as above, then apply fixes for every non-PASS citation.
What to auto-fix (no user confirmation needed)
These are mechanical corrections with a single correct answer:
METADATA errors (paper exists, bib entry wrong):
- Wrong arXiv ID → replace
eprint with the correct ID
- Wrong authors → replace with authors from the actual paper
- Wrong year → replace with year from the actual paper
- Wrong title → replace with title from the actual paper
- Wrong venue → replace with venue from the actual paper
- Wrong entry type → change
@misc/@inproceedings as appropriate
DEAD links:
- URL redirects → update
howpublished URL to the final destination
- URL 404 but resource found at different URL → update URL
- URL 404 and resource gone → flag as HUMAN-REQUIRED
Minor author corrections:
- Misspelled author names → fix spelling
- Missing authors from author list → add them
- Collective author name where individual names are available → replace
(keep collective name as a note if it is how the group identifies)
What requires HUMAN-REQUIRED decision
Present these and wait for the user:
GHOST papers:
- Paper does not exist at all → present options:
(a) Replace with a real paper that makes the same point
(b) Remove the citation and adjust the prose
(c) The user knows the paper exists and provides the correct reference
INVERTED or INACCURATE claims:
- The manuscript says X about a paper that actually says Y → present:
- What the manuscript claims
- What the paper actually says
- A suggested rewrite of the prose that accurately represents the paper
- Whether the paper still supports the manuscript's argument (and how)
- Let the user decide the final wording
Dead URLs with no replacement found:
- Blog post / resource deleted with no archive or alternative
Fix procedure
- Apply all auto-fixes to the
.bib file
- For each HUMAN-REQUIRED item, present the options clearly
- After user decisions, apply prose changes to the
.tex file
- Verify: re-read the
.bib and .tex to confirm all fixes applied
- Update the audit report: mark each finding as
[FIXED], [RESOLVED],
or [DEFERRED]
Safety rules
- NEVER invent a replacement citation. If a ghost paper needs replacing,
search for real papers that make the cited point. Present candidates
to the user with abstracts. Let the user choose.
- NEVER change the manuscript's argument. If an inverted claim needs
fixing, present the rewrite as a suggestion, not an edit.
- NEVER remove a citation without user confirmation, even if it is a
ghost paper. The user may know something you do not.
- When fixing URLs, always verify the new URL loads and contains the
expected content before writing it.
Save report as
[name]-citation-audit.md in the manuscript directory.
1---2name: citation-audit3description: Verify that every citation in a manuscript is real, correctly attributed, and accurately described. Detects ghost papers, wrong arXiv IDs, inverted claims, and dead links by fetching each cited work. Optional fix mode applies bib metadata corrections and surfaces prose rewrites for claim errors. Triggers on: "check my citations", "verify references", "citation audit", "are my references real", "check bib", "reference check", "bib audit", "citation verification". Companion to manuscript-review (Pass 5 hygiene); this skill audits factual truth.4---56# Citation Audit Skill78## Purpose910Verify every citation in a manuscript against its actual source. LLMs11hallucinate citations, invent arXiv IDs, misattribute findings, and confuse12authors. This skill catches all of that by fetching and reading each cited13work.1415## Why This Exists1617LLMs are unreliable with citations in three distinct ways:181. **Ghost papers** — The paper does not exist. Title, authors, or venue are19 fabricated.202. **Wrong metadata** — The paper exists but the bib entry has the wrong arXiv21 ID, wrong authors, wrong year, or wrong venue.223. **Inverted claims** — The paper exists and the bib is correct, but the23 manuscript mischaracterizes what the paper says.2425All three are invisible to structural audits (cross-reference checks,26compilation tests). They require reading the actual cited work.2728## Inputs2930- The manuscript `.tex` file(s)31- The `.bib` file32- Web access (to fetch papers from arXiv, conference sites, URLs)3334## Execution3536### Phase 1: Extract citation contexts3738For each `\citep{}`, `\citet{}`, `\cite{}` in the manuscript:391. Record the bib key402. Record the surrounding sentence or paragraph (the **claim context**)413. Classify the claim type:42 - **FACTUAL**: "X et al. found Y" / "X et al. measured Y"43 - **METHODOLOGICAL**: "We follow X" / "We use the benchmark from X"44 - **POSITIONAL**: "Unlike X, we..." / "X does not measure..."45 - **PARENTHETICAL**: "(X, 2024)" — no specific claim, just a reference464. For FACTUAL and POSITIONAL claims, extract the specific assertion the47 manuscript makes about the cited work4849### Phase 2: Verify bib entry metadata5051For each bib entry, verify against the actual source:5253**For arXiv papers (`eprint` field present):**541. Fetch `https://arxiv.org/abs/{eprint_id}`552. Compare: title, authors, year563. If the fetched paper has a DIFFERENT title/authors than the bib entry,57 this is a **WRONG ID** or **GHOST PAPER**5859**For conference/journal papers (`booktitle` or `journal` field):**601. Search for the paper by title + author on the web612. Verify: venue, year, author list623. If the paper cannot be found at the stated venue, flag as63 **UNVERIFIABLE** or **GHOST PAPER**6465**For web resources (`howpublished` with URL):**661. Fetch the URL672. Verify it loads and the content matches the described resource683. If the URL is dead or redirects to unrelated content, flag as69 **DEAD LINK**7071**For each entry, check:**72- [ ] Paper exists (reachable via arXiv, DOI, URL, or web search)73- [ ] Title matches (exact or near-exact)74- [ ] Authors match (at least first author correct)75- [ ] Year matches76- [ ] Venue matches (if applicable)77- [ ] Entry type appropriate (`@inproceedings` for conferences,78 `@article` for journals, `@misc` for preprints/blogs)7980### Phase 3: Verify claim accuracy8182For each FACTUAL or POSITIONAL claim:831. **Read the cited paper** (abstract + relevant sections at minimum)842. Compare the manuscript's claim against what the paper actually says853. Classify:86 - **ACCURATE** — The claim faithfully represents the cited work87 - **INACCURATE** — The claim mischaracterizes the cited work88 - **INVERTED** — The claim says the opposite of what the paper found89 - **OVERCLAIMED** — The claim is stronger than what the paper supports90 - **UNDERCLAIMED** — The cited work supports a stronger claim than stated91 - **UNVERIFIABLE** — Cannot access the paper to verify9293For INACCURATE and INVERTED findings, provide:94- What the manuscript claims95- What the cited paper actually says96- The specific section/page of the cited paper that contradicts the claim97- A suggested correction9899### Phase 4: Check for missing citations100101Scan the manuscript for:1021. Claims that cite no source but should (empirical claims without103 attribution)1042. Tools, benchmarks, or datasets mentioned by name without citation1053. Methods described as "standard" or "well-known" that have a canonical106 citation107108## Output Format109110### Per-citation report111112```113### [bib_key] — [VERDICT]114115**Bib entry:** [title] by [authors] ([year])116**Actual paper:** [actual title] by [actual authors] ([actual year])117**Metadata match:** title [✓/✗] | authors [✓/✗] | year [✓/✗] | venue [✓/✗]118119**Claim in manuscript (line N):** "[exact text]"120**What the paper actually says:** "[summary of actual finding]"121**Claim accuracy:** [ACCURATE / INACCURATE / INVERTED / OVERCLAIMED / UNDERCLAIMED]122123**Fix required:** [description of what needs to change, or "None"]124```125126### Summary table127128```129| Bib Key | Exists | Metadata | Claim | Verdict |130|---------|--------|----------|-------|---------|131| key1 | ✓ | ✓ | ✓ | PASS |132| key2 | ✓ | ✗ | ✗ | FAIL |133| key3 | ✗ | — | — | GHOST |134```135136### Verdict categories137138- **PASS** — Paper exists, metadata correct, claims accurate139- **METADATA** — Paper exists, bib entry has errors (wrong ID, wrong140 authors, wrong year)141- **CLAIM** — Paper exists, metadata correct, but manuscript142 mischaracterizes it143- **GHOST** — Paper does not exist as described144- **DEAD** — URL/link is broken145- **UNVERIFIABLE** — Cannot access the paper to verify146147## Severity148149- **CRITICAL**: GHOST papers, INVERTED claims150- **HIGH**: Wrong arXiv IDs, wrong authors, INACCURATE claims151- **MEDIUM**: Wrong year, wrong venue, OVERCLAIMED152- **LOW**: Missing citations, incomplete bib entries, UNDERCLAIMED153154## Important notes155156- NEVER trust your own knowledge of papers. ALWAYS fetch and verify.157 Your training data contains hallucinated citations. The only way to158 verify is to read the actual source.159- For arXiv papers, always fetch the abstract page to confirm the paper160 exists and matches.161- For conference papers, search DBLP, ACM DL, or the conference site.162- WebFetch and WebSearch are your primary tools. Do not skip verification163 because a citation "looks right."164- Blog posts and documentation URLs change. Always check that the URL165 still works and points to the described content.166- When a bib entry has both an `eprint` (arXiv ID) and a `booktitle`167 (venue), verify both independently.168169## Phase 5: Fix (when invoked with "fix" or "on")170171When the user invokes with an argument containing "fix" or "on", execute172Phases 1–4 as above, then apply fixes for every non-PASS citation.173174### What to auto-fix (no user confirmation needed)175176These are mechanical corrections with a single correct answer:177178**METADATA errors (paper exists, bib entry wrong):**179- Wrong arXiv ID → replace `eprint` with the correct ID180- Wrong authors → replace with authors from the actual paper181- Wrong year → replace with year from the actual paper182- Wrong title → replace with title from the actual paper183- Wrong venue → replace with venue from the actual paper184- Wrong entry type → change `@misc`/`@inproceedings` as appropriate185186**DEAD links:**187- URL redirects → update `howpublished` URL to the final destination188- URL 404 but resource found at different URL → update URL189- URL 404 and resource gone → flag as HUMAN-REQUIRED190191**Minor author corrections:**192- Misspelled author names → fix spelling193- Missing authors from author list → add them194- Collective author name where individual names are available → replace195 (keep collective name as a note if it is how the group identifies)196197### What requires HUMAN-REQUIRED decision198199Present these and wait for the user:200201**GHOST papers:**202- Paper does not exist at all → present options:203 (a) Replace with a real paper that makes the same point204 (b) Remove the citation and adjust the prose205 (c) The user knows the paper exists and provides the correct reference206207**INVERTED or INACCURATE claims:**208- The manuscript says X about a paper that actually says Y → present:209 - What the manuscript claims210 - What the paper actually says211 - A suggested rewrite of the prose that accurately represents the paper212 - Whether the paper still supports the manuscript's argument (and how)213 - Let the user decide the final wording214215**Dead URLs with no replacement found:**216- Blog post / resource deleted with no archive or alternative217218### Fix procedure2192201. Apply all auto-fixes to the `.bib` file2212. For each HUMAN-REQUIRED item, present the options clearly2223. After user decisions, apply prose changes to the `.tex` file2234. Verify: re-read the `.bib` and `.tex` to confirm all fixes applied2245. Update the audit report: mark each finding as `[FIXED]`, `[RESOLVED]`,225 or `[DEFERRED]`226227### Safety rules228229- NEVER invent a replacement citation. If a ghost paper needs replacing,230 search for real papers that make the cited point. Present candidates231 to the user with abstracts. Let the user choose.232- NEVER change the manuscript's argument. If an inverted claim needs233 fixing, present the rewrite as a suggestion, not an edit.234- NEVER remove a citation without user confirmation, even if it is a235 ghost paper. The user may know something you do not.236- When fixing URLs, always verify the new URL loads and contains the237 expected content before writing it.238239## Save report as240241`[name]-citation-audit.md` in the manuscript directory.