ワンクリックで
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]