一键导入
contradiction-detection
Use when the user wants to find conflicting claims, methods, or conclusions across papers on the same topic.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when the user wants to find conflicting claims, methods, or conclusions across papers on the same topic.
用 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 | contradiction-detection |
| description | Use when the user wants to find conflicting claims, methods, or conclusions across papers on the same topic. |
Scans a corpus of papers for conflicting empirical claims, methodological disagreements, or opposing conclusions on the same topic. Surfaces genuine scientific contradictions that the team needs to be aware of — before they cite conflicting work or build on a shaky premise.
contradictions = contradiction_detection.scan(
corpus=review.get_papers(),
topic="learning rate schedules in transformer training",
min_confidence=0.7
)
contradiction_detection.check_claim(
claim="Dropout consistently improves generalization in large language models",
corpus=review.get_papers(),
search_external=True
)
contradiction_detection.report(
topic="benchmark evaluation of protein structure prediction",
format="discussion_section_draft",
include_resolution_suggestions=True
)
Returns list of contradiction pairs with: paper A, paper B, conflicting claims, contradiction type, severity score, and suggested resolution or explanation. Optionally formatted as a discussion section narrative.
claim_auditor when a contribution claim may be contestedrelated_work_scout when the paper needs a balanced discussion of conflicting prior workevidence-grading to assess which side of a contradiction has stronger support