一键导入
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 职业分类
| 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]
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