From d57566d16188c6f27355604fa21ed92f93082a12 Mon Sep 17 00:00:00 2001 From: EMRG Evolution Date: Sat, 8 Aug 2026 10:39:14 +0800 Subject: [PATCH] emrg: reset TUI status center after skills result handlers --- emrg/client/app.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/emrg/client/app.py b/emrg/client/app.py index 892bc0a4..b7511716 100644 --- a/emrg/client/app.py +++ b/emrg/client/app.py @@ -718,6 +718,7 @@ async def _reconnect(): lines.append("") lines.append("Install: `/skills install ` · Refresh: `/skills update`") chat.add("system", "\n".join(lines)) + status.update(center=server_id or "emrg") term.render() continue @@ -739,6 +740,7 @@ async def _reconnect(): f"✅ Skill `{name}` installed" + (f" (v{data.get('version', '?')})" if data.get("version") else "") + ". It will appear in the next session's Available Skills.") + status.update(center=server_id or "emrg") term.render() continue @@ -762,6 +764,7 @@ async def _reconnect(): if not updated and not skipped and not errors: lines.append("All up to date.") chat.add("system", "\n".join(lines)) + status.update(center=server_id or "emrg") term.render() continue