@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.
@@ -188,7 +188,7 @@ from omega_engine.genesis import (
188
188
  )
189
189
  from omega_engine import plan as plan_v7
190
190
 
191
- __version__ = "0.19.50"
191
+ __version__ = "0.19.51"
192
192
 
193
193
  __all__ = [
194
194
  "__version__",
@@ -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,6 +1,6 @@
1
1
  [project]
2
2
  name = "omega-engine"
3
- version = "0.19.50"
3
+ version = "0.19.51"
4
4
  description = "The Omega OS orchestration engine — event-sourced, verified-completion agent graphs."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
@@ -1 +1 @@
1
- 0.19.50
1
+ 0.19.51
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentikos/omega-os",
3
- "version": "0.19.50",
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"