Citation Verifier
Use this skill when the user wants to quickly verify or normalize a single paper reference rather than run a full literature search.
Workflow
- 1. Accept whatever the user provides: DOI, URL, arXiv ID, PubMed ID, citation string, or a partial title.
- Call
verify_citation with the raw input. - If verification succeeds, call
fetch with the resolved identifier to get the full paper record. - Present the normalized result.
Output Style
Return a clean, structured card with:
- - Title — full paper title
- Authors — first three authors, et al. if more
- Year — publication year
- Venue — journal or conference
- DOI — canonical DOI if available
- Identifiers — any additional IDs (arXiv, PubMed, Semantic Scholar)
- Status — whether the citation was verified successfully or had issues
If verification fails or is ambiguous, say so clearly and suggest what the user can try (e.g., a more complete title, a different identifier).
Tool Guidance
Use verify_citation
Always call this first. It handles:
- - DOI strings (with or without resolver prefix)
- arXiv IDs (e.g.,
2301.12345, arXiv:2301.12345) - PubMed IDs
- full or partial URLs from publisher sites, Semantic Scholar, Google Scholar
- free-text citation strings (e.g., "Smith et al. 2020, Neural networks for...")
Use fetch
Call after successful verification to hydrate the full paper record with abstract, citation count, and venue details.
Do NOT use
- -
search_literature — this skill is for a known reference, not topic discovery - INLINECODE7 — the user wants verification, not graph exploration
Examples
- - User pastes: INLINECODE8
- User pastes: INLINECODE9
- User says: "Check this cite: Vaswani et al., Attention Is All You Need, NeurIPS 2017"
- User says: "Is this DOI valid? 10.1234/fake.doi.000"
- User pastes a Semantic Scholar or Google Scholar URL
引用验证器
当用户想要快速验证或规范化单篇论文参考文献而非进行完整文献检索时,使用此技能。
工作流程
- 1. 接受用户提供的任何内容:DOI、URL、arXiv ID、PubMed ID、引用字符串或部分标题。
- 使用原始输入调用verify_citation。
- 如果验证成功,使用解析后的标识符调用fetch获取完整论文记录。
- 呈现规范化结果。
输出格式
返回一个清晰、结构化的卡片,包含:
- - 标题 — 论文完整标题
- 作者 — 前三名作者,超过则加等
- 年份 — 出版年份
- 发表平台 — 期刊或会议
- DOI — 规范DOI(如有)
- 标识符 — 任何附加ID(arXiv、PubMed、Semantic Scholar)
- 状态 — 引用验证成功或存在问题
如果验证失败或存在歧义,请明确说明并建议用户可以尝试的方法(例如,更完整的标题、不同的标识符)。
工具指南
使用verify_citation
始终首先调用此工具。它处理:
- - DOI字符串(带或不带解析器前缀)
- arXiv ID(例如,2301.12345、arXiv:2301.12345)
- PubMed ID
- 来自出版商网站、Semantic Scholar、Google Scholar的完整或部分URL
- 自由文本引用字符串(例如,Smith et al. 2020, Neural networks for...)
使用fetch
在成功验证后调用,以获取包含摘要、引用次数和发表平台详情的完整论文记录。
请勿使用
- - searchliterature — 此技能用于已知参考文献,而非主题发现
- getcitation_graph — 用户需要验证,而非图谱探索
示例
- - 用户粘贴:10.1038/s41586-021-03819-2
- 用户粘贴:https://arxiv.org/abs/2301.12345
- 用户说:检查这条引用:Vaswani et al., Attention Is All You Need, NeurIPS 2017
- 用户说:这个DOI有效吗?10.1234/fake.doi.000
- 用户粘贴Semantic Scholar或Google Scholar URL