원클릭으로
cite
Finds a paper by title, author, or DOI, adds BibTeX to references.bib, and shows citation syntax. Use when adding a reference.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Finds a paper by title, author, or DOI, adds BibTeX to references.bib, and shows citation syntax. Use when adding a reference.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Scaffold a Quarto analysis notebook (generic or method-specific — DiD, IV, RDD, LASSO, Panel FE), register it in _quarto.yml, apply publication-quality figure styling, and generate dataset codebooks. Use when starting a new analysis notebook.
Manage the project's literature workflow — ideate research questions, run structured literature reviews, add citations to references.bib, write annotation notes in references/, and audit citation integrity. Use for any bibliography or literature task.
Audit a Quarto manuscript or a single notebook — freeze freshness, data-path existence, citation integrity, figure/table export presence, placeholder and anonymization checks. Produces a scored review report under notes/. Read-only — never modifies notebooks, data, or the manuscript.
Build publication-quality regression and robustness tables from notebook estimation output, exported to tables/ as CSV + Markdown + LaTeX. Use when creating a results table.
Draft and revise manuscript prose for index.qmd — sections, the abstract, regression-result interpretation, and referee responses. Use when writing or revising the manuscript.
Reads the manuscript and notebooks to generate a structured abstract. Use when writing or updating the abstract.
| name | cite |
| description | Finds a paper by title, author, or DOI, adds BibTeX to references.bib, and shows citation syntax. Use when adding a reference. |
| argument-hint | <paper or DOI> |
| allowed-tools | Bash, Read, Write, Edit, Glob, Grep, WebSearch, WebFetch |
| version | 1.0.0 |
| workflow_stage | writing |
| tags | ["citations","bibliography","BibTeX"] |
Find a paper, create a BibTeX entry, add it to references.bib, and provide the citation syntax.
$ARGUMENTS — a paper description, title, author name, or DOI (e.g., "Acemoglu 2001 colonial origins" or "10.1257/aer.91.5.1369")Parse the argument to determine if it is a DOI or a descriptive search query.
Search for the paper:
Construct a valid BibTeX entry with these fields (at minimum):
@article{key, (or @book, @incollection, etc. as appropriate)author, title, journal (or booktitle), year, volume, number, pages, doilastname_yearword (e.g., acemoglu2001colonial)Read references.bib and check for duplicate keys:
Append the new entry to references.bib (add a blank line before the new entry)
Show the user the citation syntax for use in index.qmd:
@key → "Author (Year)"[@key] → "(Author, Year)"[@key1; @key2]Ask if the user wants to create an annotation note in references/ (see /project:literature-note)
references.bib does not exist, create it with the new entry.