From cfd428d21356fe96a019e93812ecc11f67bde55d Mon Sep 17 00:00:00 2001 From: A <258483684+la14-1@users.noreply.github.com> Date: Sun, 19 Apr 2026 01:29:48 -0700 Subject: [PATCH] fix(ux): document --fast flag in help text (#3323) The --fast flag enables all speed optimizations (images, tarballs, parallel, docker) but was completely invisible in help output. Users had to read source or manually stack 4 --beta flags. Agent: ux-engineer Co-authored-by: B <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Sonnet 4.5 --- packages/cli/package.json | 2 +- packages/cli/src/commands/help.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 8fb6035a..37251d4b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "1.0.17", + "version": "1.0.18", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/commands/help.ts b/packages/cli/src/commands/help.ts index 164c009e..067101a8 100644 --- a/packages/cli/src/commands/help.ts +++ b/packages/cli/src/commands/help.ts @@ -10,6 +10,7 @@ function getHelpUsageSection(): string { spawn --size Set instance size/type (works for all clouds) spawn --model Set the LLM model (e.g. openai/gpt-5.3-codex) spawn --custom Show interactive size/region pickers + spawn --fast Enable all speed optimizations (images, tarballs, parallel) spawn --headless Provision and exit (no interactive session) spawn --output json Headless mode with structured JSON on stdout @@ -73,6 +74,7 @@ function getHelpExamplesSection(): string { ${pc.dim("# Use a specific machine type")} spawn codex gcp --model openai/gpt-5.3-codex ${pc.dim("# Override the default LLM model")} + spawn claude sprite --fast ${pc.dim("# Fastest provisioning (images + tarballs + parallel)")} spawn opencode gcp --dry-run ${pc.dim("# Preview without provisioning")} spawn claude hetzner --headless ${pc.dim("# Provision, print connection info, exit")} spawn claude hetzner --output json ${pc.dim("# Structured JSON output on stdout")}