一键导入
arxiv-metadata
Fetch structured metadata for an arXiv paper. Use when you have an arXiv ID or URL and need title, authors, date, categories, and DOI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch structured metadata for an arXiv paper. Use when you have an arXiv ID or URL and need title, authors, date, categories, and DOI.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Check a LaTeX paper before submission or circulation. Verify references, compilation, LaTeX hygiene, figure quality, affiliations, acknowledgements, and code or data availability, then return one severity-ranked report.
Critique an academic manuscript for novelty, methodological rigor, causal claims, data quality, generalizability, mechanism, and presentation. Use for pre-submission review or anticipating reviewer concerns.
Review LaTeX documents for common issues, style consistency, typography, cross-references, draft artifacts, and debugging code. Use after editing LaTeX documents or before submission.
Critique academic figures for print quality, accessibility, legibility, visual encoding, and statistical presentation. Use when reviewing figures or preparing a manuscript for submission.
Toggle DOI, URL, eprint, and ISBN display in a biblatex bibliography. Use when the user asks to show or hide identifiers or make bibliography identifiers available as links.
Query and analyze scholarly literature using the OpenAlex API. Use for literature searches, finding papers by author or institution, citation analysis, and bibliometric queries.
| name | arxiv-metadata |
| user_invocable | true |
| description | Fetch structured metadata for an arXiv paper. Use when you have an arXiv ID or URL and need title, authors, date, categories, and DOI. |
./scripts/arxiv_metadata.py <arXiv-ID-or-URL>
Paths are relative to this skill's directory.
Accepts bare IDs (2301.10140), old-style IDs (hep-ph/9901234), or full URLs (https://arxiv.org/abs/2301.10140).
Returns JSON:
{
"arxiv_id": "2301.10140",
"title": "Paper title",
"authors": ["Author One", "Author Two"],
"published": "2023-01-24",
"primary_category": "cs.CL",
"categories": ["cs.CL", "cs.AI"],
"doi": "10.1234/..." or null,
"url": "https://arxiv.org/abs/2301.10140"
}
url prefers the DOI link (https://doi.org/...) when a published DOI exists, otherwise uses the arXiv abstract page.published is the original arXiv submission date (YYYY-MM-DD).