Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions emrg/client/app.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -718,6 +718,7 @@ async def _reconnect():
lines.append("")
lines.append("Install: `/skills install <name>` · Refresh: `/skills update`")
chat.add("system", "\n".join(lines))
status.update(center=server_id or "emrg")
term.render()
continue

Expand All@@ -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

Expand All@@ -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

Expand Down
Loading