paper reference checker
by @benchen4395
This skill should be used when the user asks to "check paper citations", "verify references", "detect fake citations", "validate bibliography", "check if pap...
clawhub install paper-reference-checker๐ About This Skill
name: paper-reference-checker description: This skill should be used when the user asks to "check paper citations", "verify references", "detect fake citations", "validate bibliography", "check if papers exist", "ๆฅๆ็ฎ็ไผช", "ๆฃๆฅ่ฎบๆๅผ็จ", "้ช่ฏๅ่ๆ็ฎ", "่ฏๅซ่ๅๅผ็จ", or uploads a PDF/Overleaf document and wants to verify whether the cited papers genuinely exist. Provides systematic verification of academic references against Google Scholar, CNKI, arXiv, and other academic databases to detect AI-hallucinated or fabricated citations. version: 1.2.1
Paper Reference Checker
Systematically verify academic references to detect AI-hallucinated or fabricated citations. Queries Google Scholar, arXiv, CNKI, and other databases.
Core Workflow
Phase 1: Citation Extraction (Token-Efficient First)
ALWAYS use targeted extraction before full-document reading โ saves 80โ95% tokens.
| Input Type | Primary Method | Fallback | |------------|---------------|----------| | arXiv link | arxiv.org/html/{ID} โ find references section | Full HTML, then PDF | | PDF file | Last 15โ20% of pages only | Expand to 30% โ 50% โ full | | Overleaf link | Regex cite-keys from .tex โ filter .bib/.bbl | Inline bibitem in .tex | | Pasted list | Parse directly | โ |
Phase 2: Multi-Platform Querying (Priority Order)
1. DOI โ https://doi.org/{DOI} โ resolves = โ confirmed 2. arXiv ID โ https://arxiv.org/abs/{ID} โ match = โ confirmed 3. Google Scholar โ search "Full Title" 4. arXiv search โ arxiv.org/search/ 5. CNKI โ cnki.net 6. Fallbacks: Semantic Scholar ยท PubMed ยท IEEE Xplore ยท ACM DL ยท DBLP
Phase 3: Authenticity Judgment
| Status | Label | Criteria | |--------|-------|----------| | โ | VERIFIED | Found in โฅ1 authoritative DB | | โ ๏ธ | UNCERTAIN | Partial match | | โ | NOT FOUND | No match across all queried channels | | ๐ด | FABRICATED | Non-existent venue, unresolvable DOI | | ๐ | BROKEN CITATION | [?] marker in PDF body |
Phase 4: Report Output
See examples/sample-report.md for full example.
Support Files
| File | Purpose | |------|---------| | references/citation-extraction.md | Format rules | | references/search-strategies.md | Per-database query tactics | | references/verification-criteria.md | Decision flowchart | | scripts/extract_references.md | Full decision tree | | examples/sample-report.md | Complete report example | | examples/bibtex-example.bib | Annotated BibTeX |