@agentikos/omega-os 0.19.50 → 0.19.51
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/omega/Agentik_Engine/omega_engine/__init__.py +1 -1
- package/omega/Agentik_Engine/omega_engine/__pycache__/__init__.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/__pycache__/tui.cpython-313.pyc +0 -0
- package/omega/Agentik_Engine/omega_engine/tui.py +13 -0
- package/omega/Agentik_Engine/pyproject.toml +1 -1
- package/omega/Agentik_SSOT/VERSION +1 -1
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
@@ -429,10 +429,23 @@ def _arrow_menu() -> int:
|
|
|
429
429
|
import shlex
|
|
430
430
|
import shutil
|
|
431
431
|
import subprocess
|
|
432
|
+
import sys as _sys
|
|
432
433
|
from pathlib import Path
|
|
433
434
|
from omega_engine import __version__
|
|
434
435
|
from omega_engine import tmux
|
|
435
436
|
|
|
437
|
+
# v0.19.51 — IMMEDIATE visual feedback. The user (correctly) Ctrl-C'd
|
|
438
|
+
# every previous version because typing `omega` produced NO output
|
|
439
|
+
# for the 200-500ms it took fzf to start. Print a one-line ANSI
|
|
440
|
+
# banner FIRST so the operator sees something the moment they hit
|
|
441
|
+
# Enter — proves the command is running.
|
|
442
|
+
_ORANGE = "\033[38;5;137m"
|
|
443
|
+
_BOLD = "\033[1m"
|
|
444
|
+
_RST = "\033[0m"
|
|
445
|
+
_sys.stdout.write(f"\n {_ORANGE}{_BOLD}Ω Omega OS v{__version__}{_RST}"
|
|
446
|
+
f" · loading menu…\n")
|
|
447
|
+
_sys.stdout.flush()
|
|
448
|
+
|
|
436
449
|
if not shutil.which("fzf"):
|
|
437
450
|
print(" fzf not on PATH — falling back to slash REPL.")
|
|
438
451
|
print(" install: brew install fzf (or apt install fzf)")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.19.
|
|
1
|
+
0.19.51
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentikos/omega-os",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.51",
|
|
4
4
|
"description": "Omega OS — installable agentic operating system with verified-completion orchestration. Event-sourced engine, 8-block rack, autonomous agents, MCP.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"omega-os": "bin/omega-os.js"
|