From 780575fc57ec760a4f98f5b4a85ee2afd8dcae14 Mon Sep 17 00:00:00 2001 From: Agent Flow Date: Tue, 31 Mar 2026 01:47:34 +0000 Subject: [PATCH] fix: widen VERSION column in agent list to 18 chars The VERSION column was set to 14 characters which caused version strings to be truncated. Increased to 18 characters to display full versions. Co-Authored-By: Claude Opus 4.6 --- src/commands/agent/list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/agent/list.ts b/src/commands/agent/list.ts index 9df2fcf4..935d972c 100644 --- a/src/commands/agent/list.ts +++ b/src/commands/agent/list.ts @@ -17,7 +17,7 @@ interface ListOptions { } // Column widths (NAME is dynamic, takes remaining space) -const COL_VERSION = 14; +const COL_VERSION = 18; const COL_VISIBILITY = 10; const COL_ID = 30; const COL_CREATED = 10;