experiment-design — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited experiment-design (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When designing, planning, or analyzing A/B tests, multivariate experiments, or any controlled experiment that requires statistical rigor. Use for feature rollout decisions, conversion optimization, pricing tests, or any scenario where you need to measure the causal impact of a change.
Core principle: Hypothesis-first — never launch an experiment without a written hypothesis that specifies the expected effect direction, magnitude, and mechanism.
If we [change X],
then [metric Y] will [improve/degrade] by [Z amount]
because [causal mechanism]. Inputs:
- Baseline conversion rate (current metric value)
- Minimum Detectable Effect (MDE): smallest improvement worth detecting
- Statistical significance level (alpha): typically 0.05
- Statistical power (1-beta): typically 0.80
- Number of variants (control + treatments)
Output:
- Required sample size per variant
- Estimated duration = required_N / daily_traffic_per_variantRules:
{
"primary_metric": "conversion_rate",
"secondary_metrics": ["revenue_per_user", "engagement_time"],
"guardrail_metrics": [
{"name": "page_load_time_p95", "threshold": "+200ms", "action": "stop"},
{"name": "error_rate", "threshold": "+0.5%", "action": "stop"},
{"name": "revenue_per_session", "threshold": "-2%", "action": "alert"}
]
} IF p < 0.05 AND practical significance AND no guardrail violations:
→ SHIP (roll out to 100%)
IF p < 0.05 BUT guardrail violation:
→ ITERATE (fix guardrail issue, re-run)
IF p >= 0.05 AND confidence interval includes meaningful effects:
→ EXTEND (underpowered, run longer or increase traffic)
IF p >= 0.05 AND confidence interval excludes meaningful effects:
→ KILL (the change doesn't work, move on) ## Experiment Result: [name]
- Hypothesis: [statement]
- Duration: [days] | Sample: [N per variant]
- Primary metric: [baseline] → [variant] ([+/-X%], p=[value])
- Guardrails: [all clear / violations]
- Decision: SHIP / ITERATE / EXTEND / KILL
- Learning: [what did we learn about user behavior?]Before marking a task done when this skill was active:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.