원클릭으로
formulate-hypothesis
Formulate a single testable hypothesis by scanning the project for untested behaviors, gaps, and claims
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Formulate a single testable hypothesis by scanning the project for untested behaviors, gaps, and claims
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
Execute experiment run.sh, run analysis script, parse output, and interpret results
| name | _formulate-hypothesis |
| description | Formulate a single testable hypothesis by scanning the project for untested behaviors, gaps, and claims |
| user-invocable | false |
| allowed-tools | ["Read","Glob","Grep"] |
Generate a single testable, falsifiable hypothesis about the project.
Skill(_formulate-hypothesis "<project_root>" "<focus_area>" "<existing_claims>" "<language>")
Arguments:
project_root — absolute path to the target project root directoryfocus_area — entire project, performance, correctness, or a specific component nameexisting_claims — comma-separated list of already-generated claims (empty string if none)language — detected project language: go, python, node, or other[FOCUS_AREA], rooted at [PROJECT_ROOT]):
Glob("[PROJECT_ROOT]/README*") — read README for claimed behaviorsGlob("[PROJECT_ROOT]/**/test*/**", "[PROJECT_ROOT]/**/*_test*", "[PROJECT_ROOT]/**/*test*.*") — what IS tested (find gaps)Grep source files under [PROJECT_ROOT] — complex logic, error paths, config options[PROJECT_ROOT]/hypotheses/problem-context.md:Glob("[PROJECT_ROOT]/hypotheses/problem-context.md") — if the file exists, Read it[EXISTING_CLAIMS] — must be distinctPrinciple: Generate the hypothesis WITHOUT reading implementation details. Test behavior, not implementation.
Return this structured text to the calling skill:
HYPOTHESIS: [testable claim]
REFUTED_IF: [falsifiability condition]