diff --git a/packages/cli/package.json b/packages/cli/package.json index 6622f9c4..4cfc9223 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@openrouter/spawn", - "version": "0.15.39", + "version": "0.15.40", "type": "module", "bin": { "spawn": "cli.js" diff --git a/packages/cli/src/commands/list.ts b/packages/cli/src/commands/list.ts index 905735a0..979960f5 100644 --- a/packages/cli/src/commands/list.ts +++ b/packages/cli/src/commands/list.ts @@ -499,15 +499,9 @@ export async function cmdList(agentFilter?: string, cloudFilter?: string): Promi if (filtered.length === 0) { const historyRecords = filterHistory(agentFilter, cloudFilter); if (historyRecords.length > 0) { - p.log.info("No active servers found."); - p.log.info( - pc.dim( - `${historyRecords.length} spawn${historyRecords.length !== 1 ? "s" : ""} in history but without active connections.`, - ), - ); - p.log.info( - `Re-launch with ${pc.cyan("spawn ")} or view full history with ${pc.cyan("spawn list | cat")}`, - ); + p.log.info("No active servers found. Showing spawn history:"); + renderListTable(historyRecords, manifest); + showListFooter(historyRecords, agentFilter, cloudFilter); } else { await showEmptyListMessage(agentFilter, cloudFilter); }