From a4d58a459e5707275a4e026ae692a5b22c4a7c82 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 13 Jan 2026 10:55:02 -0800 Subject: [PATCH] Update list command: rename column and enable text wrapping - Rename 'Agent Name' column to 'Label' - Enable text wrapping on Command and Details columns (no_wrap=False, overflow="fold") Co-Authored-By: Claude Sonnet 4.5 --- mcquack.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mcquack.py b/mcquack.py index 2e6d97b..b2711b2 100755 --- a/mcquack.py +++ b/mcquack.py @@ -266,9 +266,9 @@ def list_agents() -> None: console = Console() table = Table(show_header=True, header_style="bold cyan") - table.add_column("Agent Name", style="green") - table.add_column("Command", style="yellow") - table.add_column("Details", style="dim") + table.add_column("Label", style="green", no_wrap=False) + table.add_column("Command", style="yellow", no_wrap=False, overflow="fold") + table.add_column("Details", style="dim", no_wrap=False, overflow="fold") for plist_path in plists: try: