← All plugins
citecheck
v0.1.0Verify academic paper citations: extract references from LaTeX/PDF, check formatting, verify existence via Crossref/Semantic Scholar, and score thematic/semantic relevance.
CodexClaude Code1 skill
by CiteCheck TeamMIT55updated 2 months ago
Source
git clone https://github.com/color4-alt/CiteCheckClone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.
Layout
citecheck/
├── .codex-plugin/plugin.json├── .claude-plugin/plugin.json└── skills/citecheck/SKILL.md
Skills1
citecheckskills/citecheck/SKILL.md
Use when the user asks to "verify citations", "check references", "validate paper citations", or "evaluate reference relevance". It extracts references from LaTeX/PDF papers, checks formatting rules, verifies existence via Crossref / Semantic Scholar / OpenAlex / PubMed / arXiv / dblp / Google Scholar / WebSearch, and scores thematic/semantic relevance.
Manifests2
.codex-plugin/plugin.json
{
"name": "citecheck",
"version": "0.1.0",
"description": "Verify academic paper citations: extract references from LaTeX/PDF, check formatting, verify existence via Crossref/Semantic Scholar, and score thematic/semantic relevance.",
"author": {
"name": "CiteCheck Team",
"email": "citecheck@example.com",
"url": "https://github.com/color4-alt"
},
"homepage": "https://github.com/color4-alt/CiteCheck",
"repository": "https://github.com/color4-alt/CiteCheck",
"license": "MIT",
"keywords": [
"citations",
"academic-papers",
"latex",
"pdf",
"references",
"bibliography",
"crossref",
"semantic-scholar"
],
"skills": "./skills/",
"interface": {
"displayName": "CiteCheck",
"shortDescription": "Academic citation verification for LaTeX and PDF papers",
"longDescription": "Use CiteCheck to verify citations in academic papers. It extracts references from LaTeX source files (preferred) or PDF, checks BibTeX formatting, verifies paper existence via Crossref and Semantic Scholar APIs, and evaluates thematic/semantic relevance.",
"category": "Research",
"capabilities": [
"Read",
"Write"
]
}
}.claude-plugin/plugin.json
{
"name": "citecheck",
"description": "Verify academic paper citations: extract references from LaTeX/PDF, check formatting, verify existence via Crossref/Semantic Scholar, and score thematic/semantic relevance.",
"version": "0.1.0",
"author": {
"name": "CiteCheck Team",
"email": "citecheck@example.com"
},
"homepage": "https://github.com/color4-alt/CiteCheck",
"repository": "https://github.com/color4-alt/CiteCheck",
"license": "MIT",
"keywords": [
"citations",
"academic-papers",
"latex",
"pdf",
"references",
"bibliography",
"crossref",
"semantic-scholar"
],
"skills": "./skills/"
}