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:
parent
b41c42d781
commit
a4d58a459e
1 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue