一键导入
run-and-analyze
Execute experiment run.sh, run analysis script, parse output, and interpret results
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute experiment run.sh, run analysis script, parse output, and interpret results
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Formulate a single testable hypothesis by scanning the project for untested behaviors, gaps, and claims
Guided hypothesis-driven experimentation. Choose a project, generate hypotheses, select which to test, run experiments in parallel or sequentially, document findings.
Generate iteratively-reviewed research ideas from a problem statement. Fully guided - no arguments required.
Send Claude plan to an LLM for external technical review
Create research document with problem statement and context from multiple sources (repositories, papers, files)
Populate FINDINGS.md with results and analysis, update HYPOTHESIS.md status
| name | _run-and-analyze |
| description | Execute experiment run.sh, run analysis script, parse output, and interpret results |
| user-invocable | false |
| allowed-tools | ["Bash(./hypotheses/*)","Bash(cd * && ./run.sh)","Bash(python3 *)","Bash(node *)","Read","Write","Edit","Glob","Grep"] |
Execute the experiment and produce interpreted results.
Skill(_run-and-analyze "<hypothesis_dir>" "<claim>")
Arguments:
hypothesis_dir — path to hypothesis directory (e.g., hypotheses/h3-caching-latency)claim — the original hypothesis claim (used for interpretation context)Bash: cd <hypothesis_dir> && ./run.sh
Use a 5-minute timeout.
If run.sh fails:
run.shVERDICT: Failed.Check <hypothesis_dir>/output/ for config_a.txt and config_b.txt. If missing or empty, report and stop.
Bash: cd <hypothesis_dir> && python3 analyze.py
Auto-fix parsing issues if needed (max 3 attempts). Capture analysis output.
Read output files, extract metrics, build comparison table:
Explain in 2-3 sentences.
Return this structured text to the calling skill:
VERDICT: [Confirmed|Refuted|Inconclusive|Failed]
SUMMARY: [2-3 sentence interpretation]
METRICS_TABLE: [formatted comparison table]
ANALYSIS_OUTPUT: [raw output from analyze script]