@agentikos/omega-os 0.19.53 → 0.19.54

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.
@@ -427,6 +427,15 @@ step_claude_code_settings() {
427
427
  }
428
428
 
429
429
  step_engine() {
430
+ # v0.19.54 — neutralize broken claude-mem here too, NOT just in
431
+ # step_claude_plugins. The plugins step can be skipped/idempotent on
432
+ # re-install, but step_engine ALWAYS re-runs on version drift (it's
433
+ # in the force-rerun list). This guarantees the broken plugin is
434
+ # disabled on every upgrade, even if step 45 is somehow skipped.
435
+ if declare -f _disable_broken_claude_plugins >/dev/null 2>&1; then
436
+ _disable_broken_claude_plugins
437
+ fi
438
+
430
439
  local uv_bin; uv_bin="$(command -v uv || echo "$HOME/.local/bin/uv")"
431
440
  [ -x "$uv_bin" ] || { err "uv not found after step 10"; return 1; }
432
441
  cd "$OMEGA_HOME/Agentik_Engine" || { err "engine block missing"; return 1; }
@@ -27,7 +27,7 @@ from __future__ import annotations
27
27
  import importlib
28
28
  from typing import Any
29
29
 
30
- __version__ = "0.19.53"
30
+ __version__ = "0.19.54"
31
31
 
32
32
  # Public-name → (module_path, attribute_name) map.
33
33
  # ``attribute_name = None`` means "return the whole module" (used for the
@@ -2949,11 +2949,28 @@ def _attach_or_spawn_chat(session_name: str, *,
2949
2949
  print(f" could not spawn {label}: {exc}")
2950
2950
  print(f" try manually: tmux new -d -s {session_name}")
2951
2951
  return 2
2952
- # Inside tmux already? Tell the user to switch (we can't from here).
2952
+ # Inside tmux already? Do the switch ourselves v0.19.54 fix.
2953
+ # Previously we PRINTED instructions ("Switch with: tmux switch-client
2954
+ # -t Omega:hermes") and exited, leaving the user staring at a useless
2955
+ # hint. Same bug pattern as cmd_menu had in v0.19.40 (fixed v0.19.41).
2956
+ # tmux switch-client works fine from inside a tmux client and is
2957
+ # exactly what the user wants.
2953
2958
  if os.environ.get("TMUX"):
2954
- print(f" already inside tmux — switch with:")
2955
- print(f" tmux switch-client -t {session_name}")
2956
- print(f" or detach (Ctrl-b d) then `omega` again.")
2959
+ import subprocess as _sp
2960
+ # Window of Omega session, or standalone session — try
2961
+ # select-window first (for Omega:<name>), then switch-client.
2962
+ if ":" in session_name:
2963
+ sess, win = session_name.split(":", 1)
2964
+ rc = _sp.run(["tmux", "select-window", "-t", session_name],
2965
+ capture_output=True).returncode
2966
+ if rc != 0:
2967
+ _sp.run(["tmux", "switch-client", "-t", sess],
2968
+ capture_output=True)
2969
+ _sp.run(["tmux", "select-window", "-t", session_name],
2970
+ capture_output=True)
2971
+ else:
2972
+ _sp.run(["tmux", "switch-client", "-t", session_name],
2973
+ capture_output=True)
2957
2974
  return 0
2958
2975
  # Outside tmux — replace this process with `tmux attach`.
2959
2976
  print(f" attaching to {label} ({session_name})…")
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "omega-engine"
3
- version = "0.19.53"
3
+ version = "0.19.54"
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.53
1
+ 0.19.54
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentikos/omega-os",
3
- "version": "0.19.53",
3
+ "version": "0.19.54",
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"