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