@agentikos/omega-os 0.19.48 → 0.19.49
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/bootstrap/lib/steps.sh +26 -0
- 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/pyproject.toml +1 -1
- package/omega/Agentik_SSOT/VERSION +1 -1
- package/package.json +1 -1
package/bootstrap/lib/steps.sh
CHANGED
|
@@ -444,6 +444,32 @@ step_engine() {
|
|
|
444
444
|
mkdir -p "$OMEGA_HOME/Agentik_Tools/bin"
|
|
445
445
|
ln -sf "$OMEGA_HOME/Agentik_Engine/.venv/bin/omega" "$OMEGA_HOME/Agentik_Tools/bin/omega"
|
|
446
446
|
ok "engine installed — omega CLI at Agentik_Tools/bin/omega"
|
|
447
|
+
|
|
448
|
+
# v0.19.49 — also drop a GLOBAL symlink so `omega` works in any shell
|
|
449
|
+
# without depending on the PATH wire to ~/.zshrc / ~/.bashrc. Try
|
|
450
|
+
# /usr/local/bin first (preferred, default macOS PATH), then ~/.local/bin
|
|
451
|
+
# (no sudo needed), then ~/bin. Skip if none writable — the PATH wire
|
|
452
|
+
# still provides the command, just requires a shell reload.
|
|
453
|
+
local global_target=""
|
|
454
|
+
if [ -d /usr/local/bin ] && [ -w /usr/local/bin ]; then
|
|
455
|
+
global_target=/usr/local/bin/omega
|
|
456
|
+
elif sudo -n true 2>/dev/null && [ -d /usr/local/bin ]; then
|
|
457
|
+
# Have passwordless sudo — install globally for the whole machine.
|
|
458
|
+
sudo ln -sf "$OMEGA_HOME/Agentik_Tools/bin/omega" /usr/local/bin/omega \
|
|
459
|
+
&& global_target=/usr/local/bin/omega
|
|
460
|
+
elif [ -d "$HOME/.local/bin" ] || mkdir -p "$HOME/.local/bin"; then
|
|
461
|
+
global_target="$HOME/.local/bin/omega"
|
|
462
|
+
fi
|
|
463
|
+
if [ -n "$global_target" ]; then
|
|
464
|
+
# /usr/local/bin path may need sudo if not writable by user — we
|
|
465
|
+
# already checked write access above, so this is safe.
|
|
466
|
+
if [ -w "$(dirname "$global_target")" ]; then
|
|
467
|
+
ln -sf "$OMEGA_HOME/Agentik_Tools/bin/omega" "$global_target"
|
|
468
|
+
ok "global symlink: $global_target → $OMEGA_HOME/Agentik_Tools/bin/omega"
|
|
469
|
+
fi
|
|
470
|
+
else
|
|
471
|
+
info "could not install a global symlink (none of /usr/local/bin, ~/.local/bin writable) — use PATH wire from .zshrc"
|
|
472
|
+
fi
|
|
447
473
|
# The engine is now importable — initialise the vault while we're here.
|
|
448
474
|
python3 "$OMEGA_REPO/bootstrap/lib/manifest-helpers.py" init-vault "$OMEGA_HOME" \
|
|
449
475
|
| sed 's/^/ /' || true
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.19.
|
|
1
|
+
0.19.49
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentikos/omega-os",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.49",
|
|
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"
|