Getting started
Quickstart local
Run Fabric Experiments locally with the example ecommerce experiment.
The local quickstart proves the experimentation spine without standing up hosted services.
Install the fx command:
npm install -g @fabricorg/experiments
fx --helpIn a project with an experiments/ directory:
fx validate experiments/
fx dev &
fx apply experiments/
fx report homepage-cta
fx kill homepage-cta --reason "Web Vitals regression"If you cannot install globally, use npx @fabricorg/experiments <command> with the same command names.
What happens
fx devstarts an in-process control plane and manifest server.fx applyconverts YAML into domain actions.- The manifest builder produces a delivery manifest.
- Your app or simulator sends synthetic exposures and conversions.
fx reportreads aggregate results.fx killexercises the governed action path and updates the audit trail.
Why start here
Local mode is the fastest way to validate:
- YAML schema and experiment lifecycle,
- deterministic assignment,
- exposure-first attribution,
- reporting and kill actions,
- guardrail behavior before adding hosted complexity.