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")}