用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/KYRIE66nb/codex-omx-public-config --skill result-to-claim命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | result-to-claim |
| description | Assess supported research claims. |
| allowed-tools | Bash(*), Read, Grep, Glob, Write, Edit, Agent |
Experiments produce numbers; this gate decides what those numbers mean. Collect results from available sources, get an objective judgment, then route based on the verdict.
gpt-5.4 - Used via a secondary Codex agent for objective claim assessment.Gather experiment data from whatever sources are available in the project:
wandb.Api().run("<entity>/<project>/<run_id>").history() - metrics, training curves, comparisonsEXPERIMENT_LOG.md - full results table with baselines and verdictsEXPERIMENT_TRACKER.md - check which experiments are done vs still runningssh server "tail -100 /path/to/training.log" if no other sourcedocs/research_contract.md or project notes - intended claims and experiment designAssemble the key information:
Send the collected results to a secondary Codex agent for objective evaluation:
spawn_agent:
model: REVIEWER_MODEL
reasoning_effort: xhigh
message: |
RESULT-TO-CLAIM EVALUATION
I need you to judge whether experimental results support the intended claim.
Intended claim: [the claim these experiments test]
Experiments run:
[list experiments with method, dataset, metrics]
Results:
[paste key numbers, comparison deltas, significance]
Baselines:
[baseline numbers and sources - reproduced or from paper]
Known caveats:
[any confounding factors, limited datasets, missing comparisons]
Please evaluate:
1. claim_supported: yes | partial | no
2. what_results_support: what the data actually shows
3. what_results_dont_support: where the data falls short of the claim
4. missing_evidence: specific evidence gaps
5. suggested_claim_revision: if the claim should be strengthened, weakened, or reframed
6. next_experiments_needed: specific experiments to fill gaps (if any)
7. confidence: high | medium | low
Be honest. Do not inflate claims beyond what the data supports.
A single positive result on one dataset does not support a general claim.
If delegation is unavailable, run the same evaluation locally and mark the verdict [pending external review] instead of blocking the pipeline.
Extract structured fields from the response:
- claim_supported: yes | partial | no
- what_results_support: "..."
- what_results_dont_support: "..."
- missing_evidence: "..."
- suggested_claim_revision: "..."
- next_experiments_needed: "..."
- confidence: high | medium | low
no - Claim not supportedfindings.md:
IDEA_CANDIDATES.md or try an alternative approachpartial - Claim partially supportedfindings.md/result-to-claim after supplementary experiments completepartial verdicts, record the analysis in findings.md and consider narrowing the claim scope or switching ideasyes - Claim supported/ablation-plannerpartial, do not round up to yes.confidence is low, treat the judgment as inconclusive and add experiments rather than committing to a claim.[pending external review].findings.md, regardless of outcome.