From ad7a16dca64a502adffe109193d1ea32a3533a04 Mon Sep 17 00:00:00 2001 From: teknium1 Date: Tue, 10 Mar 2026 15:59:08 -0700 Subject: [PATCH] fix: remove left/right borders from response box for easier copy-paste MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use rich_box.HORIZONTALS instead of the default ROUNDED box style for the agent response panel. This keeps the top/bottom horizontal rules (with title) but removes the vertical │ borders on left and right, making it much easier to copy-paste response text from the terminal. --- cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cli.py b/cli.py index 338d2f72..357a3759 100755 --- a/cli.py +++ b/cli.py @@ -396,6 +396,7 @@ try: except Exception: pass # Skin engine is optional — default skin used if unavailable +from rich import box as rich_box from rich.console import Console from rich.panel import Panel from rich.table import Table @@ -3340,6 +3341,7 @@ class HermesCLI: title=f"[bold]{label}[/bold]", title_align="left", border_style=_resp_color, + box=rich_box.HORIZONTALS, padding=(1, 2), ))