원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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]