@agentikos/omega-os 0.19.10 → 0.19.11

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.
@@ -67,31 +67,50 @@ step_system_deps() {
67
67
  fi
68
68
  local uv_bin="$(command -v uv || echo "$HOME/.local/bin/uv")"
69
69
 
70
- # 2. Try uv first (works on Tahoe + any PEP-668 Python).
70
+ # 2. Try, in order of robustness:
71
+ # a) uv venv with Astral-MANAGED Python 3.13 — bypasses any
72
+ # broken system Python (e.g. brew Python 3.14 on macOS Tahoe
73
+ # which has a libexpat ABI mismatch breaking pyexpat,
74
+ # ensurepip, pip, and stdlib `python3 -m venv` all at once).
75
+ # b) uv venv with system python3 + --seed (uv-managed pip)
76
+ # c) stdlib `python3 -m venv --without-pip` — skip broken
77
+ # ensurepip; uv handles package install separately.
78
+ # d) stdlib `python3 -m venv` — original path (works on any
79
+ # healthy Python).
80
+ local _venv_method=""
71
81
  if [ -x "$uv_bin" ] && "$uv_bin" venv "$installer_venv" \
72
- --python python3 --quiet 2>>"$LOG_FILE"; then
73
- ok " installer venv created via uv"
82
+ --python 3.13 --quiet 2>>"$LOG_FILE"; then
83
+ _venv_method="uv + Astral-managed Python 3.13"
84
+ elif [ -x "$uv_bin" ] && "$uv_bin" venv "$installer_venv" \
85
+ --python python3 --seed --quiet 2>>"$LOG_FILE"; then
86
+ _venv_method="uv + system python3 + seed"
87
+ elif python3 -m venv "$installer_venv" --without-pip 2>>"$LOG_FILE"; then
88
+ _venv_method="python3 -m venv --without-pip"
74
89
  elif python3 -m venv "$installer_venv" 2>>"$LOG_FILE"; then
75
- ok " installer venv created via python3 -m venv"
90
+ _venv_method="python3 -m venv"
76
91
  else
77
- err "venv creation failed by both uv AND python3 -m venv — see $LOG_FILE"
92
+ err "venv creation failed across all paths — see $LOG_FILE"
78
93
  err "diagnose:"
79
- err " $uv_bin venv $installer_venv --python python3"
80
- err " python3 -m venv $installer_venv"
94
+ err " $uv_bin venv $installer_venv --python 3.13"
95
+ err " python3 -m venv $installer_venv --without-pip"
81
96
  return 1
82
97
  fi
98
+ ok " installer venv created via $_venv_method"
83
99
  fi
84
100
 
85
- # 3. Install pyyaml into the venv. Two methods, uv first.
101
+ # 3. Install pyyaml into the venv via uv (doesn't need pip inside the
102
+ # venv — uv handles it). Falls back to venv pip only if uv is
103
+ # unavailable AND the venv has its own pip.
86
104
  local uv_bin="$(command -v uv || echo "$HOME/.local/bin/uv")"
87
105
  if [ -x "$uv_bin" ] && "$uv_bin" pip install --quiet \
88
106
  --python "$installer_venv/bin/python3" pyyaml 2>>"$LOG_FILE"; then
89
107
  ok " pyyaml installed via uv pip"
90
- elif "$installer_venv/bin/pip" install --quiet pyyaml 2>>"$LOG_FILE"; then
108
+ elif [ -x "$installer_venv/bin/pip" ] && \
109
+ "$installer_venv/bin/pip" install --quiet pyyaml 2>>"$LOG_FILE"; then
91
110
  ok " pyyaml installed via venv pip"
92
111
  else
93
- err "pyyaml install failed in venv — see $LOG_FILE"
94
- err "diagnose: $installer_venv/bin/pip install pyyaml"
112
+ err "pyyaml install failed inside venv — see $LOG_FILE"
113
+ err "diagnose: $uv_bin pip install --python $installer_venv/bin/python3 pyyaml"
95
114
  return 1
96
115
  fi
97
116
  ok "installer venv ready: $installer_venv"
@@ -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.10"
191
+ __version__ = "0.19.11"
192
192
 
193
193
  __all__ = [
194
194
  "__version__",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "omega-engine"
3
- version = "0.19.10"
3
+ version = "0.19.11"
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.10
1
+ 0.19.11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentikos/omega-os",
3
- "version": "0.19.10",
3
+ "version": "0.19.11",
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"