Awesome-Agent-Skills-for-Empirical-Research result-to-claim
Use when experiments complete to judge what claims the results support, what they don't, and what evidence is still missing. Codex MCP evaluates results against intended claims and routes to next action (pivot, supplement, or confirm). Use after experiments finish — before writing the paper or running ablations.
install
source · Clone the upstream repo
git clone https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/brycewang-stanford/Awesome-Agent-Skills-for-Empirical-Research "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/42-wanshuiyin-ARIS/skills/result-to-claim" ~/.claude/skills/brycewang-stanford-awesome-agent-skills-for-empirical-research-result-to-claim && rm -rf "$T"
manifest:
skills/42-wanshuiyin-ARIS/skills/result-to-claim/SKILL.mdsource content
Result-to-Claim Gate
Experiments produce numbers; this gate decides what those numbers mean. Collect results from available sources, get a Codex judgment, then auto-route based on the verdict.
Context: $ARGUMENTS
When to Use
- After a set of experiments completes (main results, not just sanity checks)
- Before committing to claims in a paper or review response
- When results are ambiguous and you need an objective second opinion
Workflow
Step 1: Collect Results
Gather experiment data from whatever sources are available in the project:
- W&B (preferred):
— metrics, training curves, comparisonswandb.Api().run("<entity>/<project>/<run_id>").history() - EXPERIMENT_LOG.md: full results table with baselines and verdicts
- EXPERIMENT_TRACKER.md: check which experiments are DONE vs still running
- Log files:
if no other sourcessh server "tail -100 /path/to/training.log" - docs/research_contract.md: intended claims and experiment design
Assemble the key information:
- What experiments were run (method, dataset, config)
- Main metrics and baseline comparisons (deltas)
- The intended claim these experiments were designed to test
- Any known confounds or caveats
Step 2: Codex Judgment
Send the collected results to Codex for objective evaluation:
mcp__codex__codex: config: {"model_reasoning_effort": "xhigh"} prompt: | 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.
Step 3: Parse and Normalize
Extract structured fields from Codex 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
Step 4: Route Based on Verdict
no
— Claim not supported
no- Record postmortem in findings.md (Research Findings section):
- What was tested, what failed, hypotheses for why
- Constraints for future attempts (what NOT to try again)
- Update CLAUDE.md Pipeline Status
- Decide whether to pivot to next idea from IDEA_CANDIDATES.md or try an alternative approach
partial
— Claim partially supported
partial- Update the working claim to reflect what IS supported
- Record the gap in findings.md
- Design and run supplementary experiments to fill evidence gaps
- Re-run result-to-claim after supplementary experiments complete
- Multiple rounds of
on the same claim → record analysis in findings.md, consider whether to narrow the claim scope or switch ideaspartial
yes
— Claim supported
yes- Record confirmed claim in project notes
- If ablation studies are incomplete → trigger
/ablation-planner - If all evidence is in → ready for paper writing
Rules
- Codex is the judge, not CC. CC collects evidence and routes; Codex evaluates. This prevents post-hoc rationalization.
- Do not inflate claims beyond what the data supports. If Codex says "partial", do not round up to "yes".
- A single positive result on one dataset does not support a general claim. Be honest about scope.
- If
is low, treat the judgment as inconclusive and add experiments rather than committing to a claim.confidence - If Codex MCP is unavailable (call fails), CC makes its own judgment and marks it
— do not block the pipeline.[pending Codex review] - Always record the verdict and reasoning in findings.md, regardless of outcome.