Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/QinghongLin/paperdoctor --skill read-bib명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Organize a paper PDF and its codebase into clean reading artifacts. Use this before any other read-* skills.
Deep extraction of all verifiable claims from a research paper. Actively proposes implicit claims, splits compound statements, and flags cross-reference inconsistencies.
Verify paper claims with evidence_type "code" against the actual codebase. Use after read-txt to check if code matches what the paper says.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | read-bib |
| description | Verify each cited reference exists via web search. |
| allowed-tools | Read, WebSearch |
Read the input references.json. For each entry, WebSearch its raw_text and record found or not_found.
Each entry's id, year, raw_text fields should be copied as-is into the output — do not modify them.
When status is warning or error, set quote to the URL(s) found during search (e.g. the correct arXiv/venue page) followed by a blank line and the original raw_text of the citation, so reviewers see both the candidate fix-up source and the original entry. Also include a suggest field with a concrete one-sentence fix the author can apply (e.g. "Update the year to 2025" or "Replace with the correct arXiv ID").
Input: {paper_dir}/metadata/paper/references.json
Output: {paper_dir}/reports/check_bib.json
{
"summary": { "total": 42, "pass": 38, "warning": 2, "error": 2 },
"results": [
{ "id": "ref-001", "year": "2016", "raw_text": "[1] Jun Xu, Tao Mei, Ting Yao, and Yong Rui. Msr-vtt: A large video description dataset for bridging video and language. In CVPR, pages 5288–5296, 2016.", "status": "pass" },
{ "id": "ref-005", "year": "2020", "raw_text": "[5] ...", "status": "warning", "reason": "title found but venue/year differs", "quote": "https://arxiv.org/abs/...\n\n[5] ...", "suggest": "Update the year to 2021 to match the venue listing." },
{ "id": "ref-007", "year": "2017", "raw_text": "[7] ...", "status": "error", "reason": "not found or search returned no match", "quote": "[7] ...", "suggest": "Replace with a verified citation or remove the reference." }
]
}