From 513d3448d4e4e5ea33e9f264a141f5efb8f00bfa Mon Sep 17 00:00:00 2001 From: A <258483684+la14-1@users.noreply.github.com> Date: Thu, 16 Apr 2026 01:39:36 -0700 Subject: [PATCH] fix(ux): correct reconnect command suggestion from "spawn connect" to "spawn last" (#3311) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "spawn connect" is not a valid top-level CLI command — users following this guidance after SSH reconnect failure would see "Unknown agent or cloud: connect". Replace with "spawn last" which correctly reconnects to the most recent spawn. 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/shared/orchestrate.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index 6c9379ed..3102385f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "1.0.14", + "version": "1.0.15", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/shared/orchestrate.ts b/packages/cli/src/shared/orchestrate.ts index 3fc0e886..8dc79a6d 100644 --- a/packages/cli/src/shared/orchestrate.ts +++ b/packages/cli/src/shared/orchestrate.ts @@ -917,7 +917,7 @@ async function postInstall( if (isConnectionDrop(exitCode)) { process.stderr.write("\n"); logWarn("Could not reconnect. Server is still running."); - logInfo("Reconnect manually: spawn connect"); + logInfo("Reconnect manually: spawn last"); } if (tunnelHandle) {