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 <noreply@anthropic.com>
This commit is contained in:
Erich Blume 2026-01-13 10:55:02 -08:00
commit a4d58a459e

View file

@ -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: