mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 11:59:29 +00:00
fix(ux): correct reconnect command suggestion from "spawn connect" to "spawn last" (#3311)
"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 <noreply@anthropic.com>
This commit is contained in:
parent
21eb1bf6e0
commit
513d3448d4
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@openrouter/spawn",
|
"name": "@openrouter/spawn",
|
||||||
"version": "1.0.14",
|
"version": "1.0.15",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"bin": {
|
"bin": {
|
||||||
"spawn": "cli.js"
|
"spawn": "cli.js"
|
||||||
|
|
|
||||||
|
|
@ -917,7 +917,7 @@ async function postInstall(
|
||||||
if (isConnectionDrop(exitCode)) {
|
if (isConnectionDrop(exitCode)) {
|
||||||
process.stderr.write("\n");
|
process.stderr.write("\n");
|
||||||
logWarn("Could not reconnect. Server is still running.");
|
logWarn("Could not reconnect. Server is still running.");
|
||||||
logInfo("Reconnect manually: spawn connect");
|
logInfo("Reconnect manually: spawn last");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tunnelHandle) {
|
if (tunnelHandle) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue