4runr-os 2.6.7 → 2.6.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/mk3-tui/src/app.rs +34 -34
- package/mk3-tui/src/main.rs +307 -307
- package/mk3-tui/src/ui/help.rs +1 -1
- package/mk3-tui/src/ui/layout.rs +1 -1
- package/mk3-tui/src/ui/mod.rs +0 -8
- package/mk3-tui/src/websocket.rs +308 -308
- package/package.json +2 -2
package/mk3-tui/src/app.rs
CHANGED
|
@@ -399,48 +399,48 @@ impl App {
|
|
|
399
399
|
"clear" => self.state.logs.clear(),
|
|
400
400
|
"help" => {
|
|
401
401
|
// Display help in operations log - clean and organized
|
|
402
|
-
self.state.logs.
|
|
403
|
-
self.state.logs.
|
|
404
|
-
self.state.logs.
|
|
405
|
-
self.state.logs.
|
|
402
|
+
self.state.logs.push_back("════════════════════════════════════════════════════════════════".to_string());
|
|
403
|
+
self.state.logs.push_back("📖 4RUNR AI AGENT OS - COMMAND REFERENCE".to_string());
|
|
404
|
+
self.state.logs.push_back("════════════════════════════════════════════════════════════════".to_string());
|
|
405
|
+
self.state.logs.push_back("".to_string());
|
|
406
406
|
|
|
407
407
|
// Navigation Commands
|
|
408
|
-
self.state.logs.
|
|
409
|
-
self.state.logs.
|
|
410
|
-
self.state.logs.
|
|
411
|
-
self.state.logs.
|
|
412
|
-
self.state.logs.
|
|
413
|
-
self.state.logs.
|
|
408
|
+
self.state.logs.push_back("🧭 NAVIGATION COMMANDS".to_string());
|
|
409
|
+
self.state.logs.push_back("────────────────────────────────────────────────────────────────".to_string());
|
|
410
|
+
self.state.logs.push_back(" build - Open Agent Builder (6-step wizard)".to_string());
|
|
411
|
+
self.state.logs.push_back(" runs - Open Run Manager (list, filter, sort)".to_string());
|
|
412
|
+
self.state.logs.push_back(" config, settings - Open Settings (mode, AI provider)".to_string());
|
|
413
|
+
self.state.logs.push_back("".to_string());
|
|
414
414
|
|
|
415
415
|
// Local Commands
|
|
416
|
-
self.state.logs.
|
|
417
|
-
self.state.logs.
|
|
418
|
-
self.state.logs.
|
|
419
|
-
self.state.logs.
|
|
420
|
-
self.state.logs.
|
|
421
|
-
self.state.logs.
|
|
422
|
-
self.state.logs.
|
|
416
|
+
self.state.logs.push_back("💻 LOCAL COMMANDS".to_string());
|
|
417
|
+
self.state.logs.push_back("────────────────────────────────────────────────────────────────".to_string());
|
|
418
|
+
self.state.logs.push_back(" quit, exit - Exit application".to_string());
|
|
419
|
+
self.state.logs.push_back(" clear - Clear operations log".to_string());
|
|
420
|
+
self.state.logs.push_back(" help - Show this help".to_string());
|
|
421
|
+
self.state.logs.push_back(" :perf - Show performance stats".to_string());
|
|
422
|
+
self.state.logs.push_back("".to_string());
|
|
423
423
|
|
|
424
424
|
// WebSocket Commands
|
|
425
|
-
self.state.logs.
|
|
426
|
-
self.state.logs.
|
|
427
|
-
self.state.logs.
|
|
428
|
-
self.state.logs.
|
|
429
|
-
self.state.logs.
|
|
430
|
-
self.state.logs.
|
|
431
|
-
self.state.logs.
|
|
432
|
-
self.state.logs.
|
|
433
|
-
self.state.logs.
|
|
434
|
-
self.state.logs.
|
|
425
|
+
self.state.logs.push_back("🌐 WEBSOCKET COMMANDS (requires connection)".to_string());
|
|
426
|
+
self.state.logs.push_back("────────────────────────────────────────────────────────────────".to_string());
|
|
427
|
+
self.state.logs.push_back(" agent.list - List all agents".to_string());
|
|
428
|
+
self.state.logs.push_back(" agent.get - Get agent details (data: {name})".to_string());
|
|
429
|
+
self.state.logs.push_back(" agent.create - Create new agent (use Agent Builder)".to_string());
|
|
430
|
+
self.state.logs.push_back(" agent.delete - Delete agent (data: {name})".to_string());
|
|
431
|
+
self.state.logs.push_back(" system.status - Get system status".to_string());
|
|
432
|
+
self.state.logs.push_back(" run.list - List runs (requires gateway)".to_string());
|
|
433
|
+
self.state.logs.push_back(" tool.list - List available tools".to_string());
|
|
434
|
+
self.state.logs.push_back("".to_string());
|
|
435
435
|
|
|
436
436
|
// Screen Controls
|
|
437
|
-
self.state.logs.
|
|
438
|
-
self.state.logs.
|
|
439
|
-
self.state.logs.
|
|
440
|
-
self.state.logs.
|
|
441
|
-
self.state.logs.
|
|
442
|
-
self.state.logs.
|
|
443
|
-
self.state.logs.
|
|
437
|
+
self.state.logs.push_back("⌨️ SCREEN CONTROLS".to_string());
|
|
438
|
+
self.state.logs.push_back("────────────────────────────────────────────────────────────────".to_string());
|
|
439
|
+
self.state.logs.push_back(" Agent Builder: Enter=Next, Backspace=Back, ESC=Cancel".to_string());
|
|
440
|
+
self.state.logs.push_back(" Run Manager: ↑/↓=Navigate, F=Filter, S=Sort, R=Refresh".to_string());
|
|
441
|
+
self.state.logs.push_back(" Settings: ↑/↓=Navigate, Space=Toggle, Enter=Save".to_string());
|
|
442
|
+
self.state.logs.push_back("".to_string());
|
|
443
|
+
self.state.logs.push_back("════════════════════════════════════════════════════════════════".to_string());
|
|
444
444
|
|
|
445
445
|
self.request_render("help_command");
|
|
446
446
|
}
|