skills/smithery.ai/experiment-design

experiment-design

Installation
SKILL.md

Experiment Design Patterns

When to Use

Load this skill when designing experiments that need to be reproducible and statistically valid.

Reproducibility Setup

Random Seeds

import random
import numpy as np

SEED = 42
random.seed(SEED)
np.random.seed(SEED)

print(f"[DECISION] Using random seed: {SEED}")
Installs
2
First Seen
Mar 12, 2026
experiment-design from smithery.ai