Invalidates cached verification entries for a single citation key so the next pipeline run re-verifies it live against Crossref, OpenAlex, Semantic Scholar, and arXiv.
How this command is triggered — by the user, by Claude, or both
Slash command
/academic-research-skills:ars-cache-invalidatesonnetThe summary Claude sees in its command listing — used to decide when to auto-load this command
Invalidate the persistent verification cache for one citation key, so the next pipeline run re-verifies it live against Crossref / OpenAlex / Semantic Scholar / arXiv instead of returning a stale cached verdict. Use this when a citation's metadata changed (e.g. a preprint gained a published DOI) or when a prior verification looks wrong. The cache (spec v3.11 #182 Delta 2) is a local SQLite store at `~/.cache/ars/verification.db` (override via `ARS_VERIFICATION_CACHE_PATH`), keyed by `(citation_key, resolver_name, query_form)` with a 90-day TTL. This command removes **every** cached entry f...
Invalidate the persistent verification cache for one citation key, so the next pipeline run re-verifies it live against Crossref / OpenAlex / Semantic Scholar / arXiv instead of returning a stale cached verdict. Use this when a citation's metadata changed (e.g. a preprint gained a published DOI) or when a prior verification looks wrong.
The cache (spec v3.11 #182 Delta 2) is a local SQLite store at ~/.cache/ars/verification.db (override via ARS_VERIFICATION_CACHE_PATH), keyed by (citation_key, resolver_name, query_form) with a 90-day TTL. This command removes every cached entry for the named citation key (all four resolvers, all query forms); other citations are untouched. It is idempotent — invalidating a key with no cached rows succeeds as a no-op.
To invalidate the entire cache at once (e.g. after a systemic resolver bug cached many false negatives), delete the database file directly: rm ~/.cache/ars/verification.db. It is recreated empty on the next run.
Implementation:
python3 scripts/ars_cache_invalidate.py $ARGUMENTS
Mode reference: docs/design/2026-05-21-v3.10-182-promote-citation-gate-spec.md §2 Delta 2.
41plugins reuse this command
First indexed Jun 4, 2026
Showing the 6 earliest of 41 plugins
npx claudepluginhub ysm827/academic-research-skills/ars-cache-invalidateInvalidates cached verification entries for a single citation key so the next pipeline run re-verifies it live against Crossref, OpenAlex, Semantic Scholar, and arXiv.
/verifyVerifies a single DOI against CrossRef, reporting canonical title, authors, and venue. Flags missing or mismatched metadata.
/factcheckVerifies BibTeX entries and cited claims in research papers by cross-referencing author names, venues, years, and numerical claims against DBLP and web sources. Produces a structured correction report.
/paper-referencesVerifies ML paper references against arXiv, Crossref, DBLP, and Semantic Scholar. Detects hallucinated citations, preprint/preprint status, and missing fields, then auto-fixes or reports issues.
/verify-citationsVerifies all citations in the main LaTeX file against the BibTeX bibliography using paper search tools. Classifies each as OK, PARTIAL, MISMATCH, UNVERIFIED, or MISSING and outputs a report.
/verify-citationsValidates all citations, references, and factual claims in markdown files against a research corpus, detects hallucinations and GRADE violations, and generates a pass/fail audit report.