From 233b0ad8cde8928a87454c9bcbc267106f43ca27 Mon Sep 17 00:00:00 2001 From: Ahmed Abushagur Date: Wed, 29 Apr 2026 09:23:00 -0700 Subject: [PATCH] feat(cli): narrow fast_provision experiment to images-only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop `tarball` from the experiment's `test` variant so the A/B hypothesis isolates the marketplace-image speedup. Tarball install remains available via `--beta tarball` and `--fast` for power users — just no longer auto-applied to bucketed users. Bumps version to 1.0.24. --- packages/cli/package.json | 2 +- packages/cli/src/index.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index f77629ea2..d747cda70 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "1.0.25", + "version": "1.0.26", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts index 3580b6414..0892969e7 100644 --- a/packages/cli/src/index.ts +++ b/packages/cli/src/index.ts @@ -959,12 +959,12 @@ async function main(): Promise { // fast_provision experiment: if the user did NOT pass --beta or --fast, // bucket them on the PostHog `fast_provision` flag. The `test` variant - // turns on tarball + images by default; control behaves as before. + // turns on images by default; control behaves as before. // Exposure is captured for both variants so PostHog can compute conversion. if (!userOptedIntoBeta) { const variant = getFeatureFlag("fast_provision", "control"); if (variant === "test") { - betaFeatures.push("tarball", "images"); + betaFeatures.push("images"); } }