From 5c6cf70d84f288dc80cfb94af53bd6107ae15835 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 23 Mar 2026 23:04:29 +0200 Subject: Add vLLM watch dashboard, side-by-side layout, and insert-mode default MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - hyperstack.rb: add VllmWatcher class and `watch` subcommand — live terminal dashboard polling all active VMs every 5 s via SSH; shows GPU util/VRAM/temp/power bars and vLLM throughput/requests/KV-cache/ cache-hit bars aligned in a shared column layout - draw(): render two or more VM panels side-by-side (horizontal) with a │ separator, padded to equal visible width; single VM falls back to vertical layout - pi/agent/extensions/modal-editor: start in INSERT mode instead of NORMAL - README: document watch command and update fish script rename Co-Authored-By: Claude Sonnet 4.6 --- pi/agent/extensions/modal-editor/index.ts | 2 +- pi/agent/settings.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'pi') diff --git a/pi/agent/extensions/modal-editor/index.ts b/pi/agent/extensions/modal-editor/index.ts index abb660a..ecf36c3 100644 --- a/pi/agent/extensions/modal-editor/index.ts +++ b/pi/agent/extensions/modal-editor/index.ts @@ -41,7 +41,7 @@ function charKind(char: string | null): CharKind { } class ModalEditor extends CustomEditor { - private mode: Mode = "normal"; + private mode: Mode = "insert"; private pending: PendingAction = null; private internals(): EditorStateAccess { diff --git a/pi/agent/settings.json b/pi/agent/settings.json index 972476b..fbb3874 100644 --- a/pi/agent/settings.json +++ b/pi/agent/settings.json @@ -1,5 +1,5 @@ { - "lastChangelogVersion": "0.61.1", + "lastChangelogVersion": "0.62.0", "defaultProvider": "openai", "defaultModel": "gpt-4.1" } \ No newline at end of file -- cgit v1.2.3