Designs A/B and multivariate tests with statistical sample size calculation, hypothesis framing, and monitoring plans for CRO experimentation.
How this skill is triggered — by the user, by Claude, or both
Slash command
/digital-marketing-pro:ab-test-plan [element-to-test][element-to-test]The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Dedicated A/B test planning with a structured hypothesis framework, statistical sample size calculation, variant design, and monitoring plan. Produces a complete experiment specification with statistical rigor and clear decision criteria.
Dedicated A/B test planning with a structured hypothesis framework, statistical sample size calculation, variant design, and monitoring plan. Produces a complete experiment specification with statistical rigor and clear decision criteria.
The user must provide (or will be prompted for):
--mde 0.01 --mde-type absolute). To express it as a relative lift instead (a 10% relative improvement on a 5% baseline = 5.5% ⇒ --mde 0.10 --mde-type relative), pass --mde-type relative. This distinction is the single most common sample-size error: the same "10%" read as absolute vs. relative changes the required sample size by roughly 40× at a 5% baseline. Always confirm which the user means.~/.claude-marketing/brands/_active-brand.json for the active slug, then load ~/.claude-marketing/brands/{slug}/profile.json. Apply voice, compliance, industry context. Check guidelines/_manifest.json for restrictions, messaging, channel styles, voice-and-tone rules, and templates. If a template matching this command exists in ~/.claude-marketing/brands/{slug}/templates/, apply its format. If no brand exists, prompt for /digital-marketing-pro:brand-setup or proceed with defaults.python "${CLAUDE_PLUGIN_ROOT}/scripts/campaign-tracker.py" --brand {slug} --action list-campaigns to review past test results and avoid re-testing already-validated hypotheses.--mde-type flag defaults to absolute — always confirm with the user which interpretation they mean before computing (the two differ by ~40× at a 5% baseline):
# Absolute MDE — detect a 1.0 percentage-point lift on a 5% baseline (5.0% → 6.0%)
python "${CLAUDE_PLUGIN_ROOT}/scripts/sample-size-calculator.py" --baseline-rate 0.05 --mde 0.01 --mde-type absolute --significance 0.95 --power 0.80
# Relative MDE — detect a 10% relative lift on a 5% baseline (5.0% → 5.5%)
python "${CLAUDE_PLUGIN_ROOT}/scripts/sample-size-calculator.py" --baseline-rate 0.05 --mde 0.10 --mde-type relative --significance 0.95 --power 0.80
This determines the required sample size per variant. Later, when the test has run, evaluate the result with python "${CLAUDE_PLUGIN_ROOT}/scripts/significance-tester.py" --control-visitors {n} --control-conversions {n} --variant-visitors {n} --variant-conversions {n} --confidence 0.95.A structured A/B test plan containing:
npx claudepluginhub mvandermeulen/digital-marketing-pro2plugins reuse this skill
First indexed Jul 9, 2026
Designs A/B and multivariate tests with statistical sample size calculation, hypothesis framing, and monitoring plans for CRO experimentation.
Designs, plans, and analyzes A/B tests with statistical rigor. Covers sample size calculation, hypothesis framing, and test duration. Activated by A/B testing queries.
Guides planning, designing, and implementing A/B tests, split tests, multivariate experiments. Covers hypotheses, sample sizes, test types, statistical principles.