From 11d6b084c1c5535350709c9bdf34ed27540c5416 Mon Sep 17 00:00:00 2001 From: Felipe Talavera Date: Wed, 18 Jun 2025 10:28:42 +0200 Subject: [PATCH] Increase truncation limits for branch and batch names in fleet list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, branch names were truncated to 25 characters and batch IDs to 15 characters, which was too short for longer descriptive names. This change increases the limits to 50 and 30 characters respectively to better accommodate longer session names without breaking the UI. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/aifleet/commands/list.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/aifleet/commands/list.py b/src/aifleet/commands/list.py index 037a264..7ab5863 100644 --- a/src/aifleet/commands/list.py +++ b/src/aifleet/commands/list.py @@ -134,8 +134,8 @@ def create_agents_table( status_text = Text(str(data["status"]), style=status_color) table.add_row( - str(data["branch"])[:25], - str(data["batch_id"])[:15], + str(data["branch"])[:50], + str(data["batch_id"])[:30], str(data["agent"]), status_text, f"{float(data['cpu']):.1f}",