diff --git a/packages/cli/package.json b/packages/cli/package.json index 5cc99b65..1541075b 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "0.25.4", + "version": "0.25.5", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/__tests__/unknown-flags.test.ts b/packages/cli/src/__tests__/unknown-flags.test.ts index 3805742e..895a9e1d 100644 --- a/packages/cli/src/__tests__/unknown-flags.test.ts +++ b/packages/cli/src/__tests__/unknown-flags.test.ts @@ -225,6 +225,7 @@ describe("KNOWN_FLAGS completeness", () => { "-m", "--config", "--steps", + "--fast", "--user", "-u", ]; diff --git a/packages/cli/src/commands/help.ts b/packages/cli/src/commands/help.ts index 553a0f41..ba1265a9 100644 --- a/packages/cli/src/commands/help.ts +++ b/packages/cli/src/commands/help.ts @@ -37,6 +37,9 @@ function getHelpUsageSection(): string { spawn status --prune Remove gone servers from history spawn fix Re-run agent setup on an existing VM (re-inject credentials, reinstall) spawn fix Fix a specific spawn by name or ID + spawn link Register an existing VM by IP (alias: reconnect) + spawn link --agent Specify the agent running on the VM + spawn link --cloud Specify the cloud provider spawn last Instantly rerun the most recent spawn (alias: rerun) spawn matrix Full availability matrix (alias: m) spawn agents List all agents with descriptions diff --git a/packages/cli/src/flags.ts b/packages/cli/src/flags.ts index ec140c3d..ed214d4f 100644 --- a/packages/cli/src/flags.ts +++ b/packages/cli/src/flags.ts @@ -35,6 +35,7 @@ export const KNOWN_FLAGS = new Set([ "-m", "--config", "--steps", + "--fast", "--user", "-u", ]);