Why two skills together#
When the words "maybe", "probably", "likely" appear, the agent is guessing. /scientific-method switches it into investigation mode — but an investigator grading its own homework inherits its own blind spots. That's what the reviewer is for:
- Investigate →
/scientific-methodforms hypotheses, derives testable consequences, runs experiments, and reports a PROVED / DISPROVED / INCONCLUSIVE verdict with the evidence attached. - Review →
/investigation-review— run in a fresh context (new session or subagent) — re-runs the evidence, challenges the strongest claim, and gates the verdict with PASS or numbered challenges.
Only a PASS-ed verdict graduates from hypothesis to fact. Each skill is also useful on its own.
One-command install#
Drops two SKILL.md files into ~/.claude/skills/. Restart Claude Code to pick them up.
for s in scientific-method investigation-review; do
mkdir -p ~/.claude/skills/$s
curl -fsSL "https://guide.zenaitutoring.com/scientific-method/$s.md" \
-o ~/.claude/skills/$s/SKILL.md
doneAfter install: invoke with /scientific-method or /investigation-review — or just say "use the scientific method" when Claude starts guessing.
The two skills#
/scientific-method#
Triggers on hedge words ("maybe", "probably", "likely"). Verifies the premise first, surfaces hidden assumptions, then loops hypothesis → experiment until it reaches a PROVED / DISPROVED / INCONCLUSIVE verdict - every claim backed by a command and its actual output.
/investigation-review#
Assumes the investigator cut corners until proven otherwise. Re-runs at least two pieces of evidence, checks what was not checked, challenges the strongest claim independently, then gates with PASS or numbered REVISE challenges. Best run in a fresh context.
Manual install (per skill)#
If you only want one of the two, put the file into its own folder under ~/.claude/skills/:
mkdir -p ~/.claude/skills/scientific-method
curl -fsSL https://guide.zenaitutoring.com/scientific-method/scientific-method.md \
-o ~/.claude/skills/scientific-method/SKILL.md