plugins/scientific-method/skills/scientific-thinking/SKILL.md
Use when facing unknowns, debugging without a clear cause, or making architecture decisions — enforces hypothesis-driven scientific reasoning through observation, hypothesis formulation, prediction, experiment design, and evidence-based conclusion. Use when previous attempts have failed or the problem space involves uncertainty.
npx skillsauth add jamie-bitflight/claude_skills scientific-thinkingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Enforces the scientific method as an investigation discipline. Governs hypothesis formulation, predictions, experiment design, and evidence-based conclusions.
Load these references at the start of any investigation. A references index is available for a quick map of all shared files.
evidence-first-debugging handles observation recording, evidence IDs, and causality
validation. Both skills use the same Unified Investigation Template output structure. Load
evidence-first-debugging when the task requires structured evidence tracking alongside
hypothesis work.
Activate this skill when the prompt contains:
Apply this skill to problems with genuine uncertainty — unknowns, failed attempts, complex architecture trade-offs.
Tasks outside scope: typo fixes, simple additions, tasks with explicit step-by-step instructions already provided. For those, execute directly.
Enforce stages in this order. Each stage gates the next.
flowchart TD
S0[Stage 0-3: Observation<br>Record ONLY factual observations<br>No interpretation] --> S4
S4[Stage 4: Hypothesis Formulation<br>State H0 null and H1 alternative<br>Both must be falsifiable] --> S5
S5[Stage 5: Prediction<br>Write: If H1 is true, we should observe...] --> S6
S6[Stage 6-7: Experiment Design<br>Define Path A and Path B<br>Identify confounds] --> S8
S8[Stage 8-9: Execute<br>Run experiments<br>Record results verbatim] --> S10
S10[Stage 10-11: Conclusion<br>Classify causality<br>State decision<br>Cite evidence IDs] --> Done
Done{status?}
Done -->|resolved-verified| Retro[Notify user: retrospective-analyst<br>agent can produce mermaid timeline<br>and retrospective from iteration log]
Done -->|unresolved or mitigated| S0
Observation (sections 0-3):
evidence-first-debugging)Hypothesis Formulation (section 4):
Prediction (section 5):
Experiment Design (sections 6-7):
Execute (sections 8-9):
Conclusion (sections 10-11):
causal-supported, correlated-only, unrelated, or unknowndevelopment
When an application needs to store config, data, cache, or state files. When designing where user-specific files should live. When code writes to ~/.appname or hardcoded home paths. When implementing cross-platform file storage with platformdirs.
testing
Enforce mandatory pre-action verification checkpoints to prevent pattern-matching from overriding explicit reasoning. Use this skill when about to execute implementation actions (Bash, Write, Edit) to verify hypothesis-action alignment. Blocks execution when hypothesis unverified or action targets different system than hypothesis identified. Critical for preventing cognitive dissonance where correct diagnosis leads to wrong implementation.
tools
Reference guide for the Twelve-Factor App methodology — 15 principles (12 original + 3 modern extensions) for building portable, resilient, cloud-native applications. Use when evaluating application architecture, designing cloud-native services, reviewing codebases for methodology compliance, advising on configuration, scaling, observability, security, and deployment patterns. Incorporates the 2025 open-source community evolution and cloud-native reinterpretations of each factor.
tools
Converts user-facing documentation (how-to guides, tutorials, API references, examples) in any format — Markdown, PDF, DOCX, PPTX, XLSX, AsciiDoc, RST, HTML, Jupyter notebooks, man pages, TOML/YAML/JSON configs, and plain text — into Claude Code skill directories with SKILL.md plus thematically grouped references/*.md files. Use when given a docs directory or mixed-format documentation to transform into an AI skill. Uses MCP file-reader server for binary formats.