verify-citations
Audit citations in LaTeX files -- check all \cite keys exist in .bib and verify via literature search
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Audit citations in LaTeX files -- check all \cite keys exist in .bib and verify via literature search
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Screen and refine research ideas in corporate finance, investments, asset pricing, and real estate. Use for brainstorming, novelty checks, contribution framing, and journal-fit triage.
Generate figures that visualize patterns in an academic literature: publication trends, citation landmarks, journal distributions, thematic evolution, method timelines, and coverage gap maps. Uses Corbis search data and Python/matplotlib.
Map the closest literature and sharpen contribution claims for finance or real-estate papers. Use for related-literature sections, novelty maps, and closest-paper comparisons.
Write a comprehensive, structured literature review on a topic. Searches the literature via Corbis, organizes into thematic strands, writes synthesized prose (not paper-by-paper enumeration), and outputs as Markdown, LaTeX section, or standalone LaTeX document with proper BibTeX citations.
Generate novel research ideas in finance and real estate using structured heuristic lenses with internal rejection filtering. Produces a curated Idea Menu of survivors, not a brainstorming list.
استنادا إلى تصنيف SOC المهني
| name | verify-citations |
| description | Audit citations in LaTeX files -- check all \cite keys exist in .bib and verify via literature search |
| user_invocable | true |
Audit citations for correctness. Checks that every \cite{KEY} has a matching BibTeX entry and verifies each entry against online search.
/verify-citations -- auto-detect the .tex and .bib files in the project/verify-citations paper/my_paper.tex -- audit a specific file/verify-citations --key blume1983 -- verify single entryFind the main .tex file: check paper/, latex_template/, then the project root for files containing \documentclass. If multiple candidates exist, ask the user which to audit. Extract all \cite{KEY} and \citep{KEY} commands.
Find the .bib file: check the same directory as the .tex file, then the project root. Read the full BibTeX database.
For each citation key:
a. Check KEY exists in .bib -- if missing, flag as MISSING
b. Extract: author, title, year, journal from the BibTeX entry
c. Use search_papers to verify: "{title}" {first author surname} {year}
d. Use get_paper_details to confirm details when a match is found
e. Build comparison table:
| Field | BibTeX value | Search result | Match? |
|---|---|---|---|
| Authors | {from .bib} | {from search} | Y/N/-- |
| Title | ... | ... | Y/N/-- |
| Year | ... | ... | Y/N/-- |
| Journal | ... | ... | Y/N/-- |
Use Y = confirmed, N = mismatch, -- = not found in search. CRITICAL: If search returns blank for a field, write "NOT FOUND IN SEARCH" -- NEVER fill from memory.
Classify each citation:
For forthcoming papers: use search_papers with additional queries as fallback to check journal placement
Output verification report:
Citation Audit: [detected .tex file]
Total: N citations checked
OK: X | Partial: Y | Mismatch: Z | Missing: W
--- FLAGGED ENTRIES ---
[KEY] STATUS: details...
Process citations in batches of 5 to respect rate limits.