一键导入
reproducibility-check
Use when the user wants to evaluate whether a paper or manuscript meets reproducibility standards and identify missing methodological details.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user wants to evaluate whether a paper or manuscript meets reproducibility standards and identify missing methodological details.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when the user wants to monitor arXiv for new papers by topic or author and produce a ranked digest of relevant preprints.
Use when the user wants to identify open research gaps, unresolved questions, or methodological blind spots across a literature corpus.
Use when the user wants to query Semantic Scholar for paper metadata, citations, references, author profiles, or semantic literature search results.
Use when the user wants to draft or revise a paper, conference, or journal abstract for a specific audience, structure, or word limit.
Use when the user wants to generate citation-aware manuscript sections or full research drafts grounded in the team's literature base.
Use when the user wants to draft concise conference rebuttals under response-period constraints and prioritize which reviewer concerns to address.
| name | reproducibility-check |
| description | Use when the user wants to evaluate whether a paper or manuscript meets reproducibility standards and identify missing methodological details. |
Evaluates the reproducibility of a paper or the team's own work against established reproducibility standards. Flags missing details, unavailable code/data, and underspecified methods before submission — catching issues reviewers will raise.
reproducibility_check.check_manuscript(
manuscript_text="[paste manuscript]",
target_venue="NeurIPS",
include_checklist=True
)
reproducibility_check.check_external(
doi="10.48550/arXiv.2310.xxxxx",
check_code_availability=True,
check_data_availability=True
)
reproducibility_check.checklist(
venue="NeurIPS",
year=2024,
format="markdown_checklist"
)
reproducibility_check.score(
doi="10.48550/arXiv.2310.xxxxx",
rubric="ml_reproducibility_challenge"
)
# Returns: {"score": 6.5/10, "breakdown": {...}, "critical_gaps": [...]}
Returns structured checklist with pass/fail per item, critical gaps flagged in red, and an overall reproducibility score. Fix recommendations are actionable: "Add random seed to Section 3.2" not "improve reproducibility."
method_reviewer for missing technical detail checksexperiment_skeptic for submission-readiness and reviewer-risk checks