Keyboard Shortcuts

LlamaForge's dashboard listens for a fixed set of keyboard shortcuts (web/js/models.js, the keydown handler). Shortcuts are ignored while focus is inside an input, select, or textarea (except Escape, which still clears the model search box), and none of them fire while a modifier key (Ctrl, Alt, Cmd) is held.

Global

KeyAction
17Switch tab: 1 Models, 2 Stats, 3 Discover, 4 Build, 5 Setup, 6 Context, 7 Help.
EscapeClose an open modal. If a modal isn't open and the model search box is focused, clear the search box instead.

Models tab only

The remaining shortcuts only act while the Models tab is active and dashboard state has loaded.

KeyAction
/Focus the model search box.
or jMove the selection down one row.
or kMove the selection up one row.
EnterExpand/collapse the selected model's detail row.
l / LLoad the selected model, if it isn't already loaded.
u / UUnload the selected model, if it's loaded or loading.
s / SSave the selected model's settings, if its detail row is open (clicks the row's save button).

The load/unload/save actions call the same /api/load, /api/unload, and /api/save endpoints as their corresponding buttons — see HTTP API.