@agentikos/omega-os 0.19.7 → 0.19.8
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/common.sh
CHANGED
|
@@ -234,23 +234,28 @@ ask() {
|
|
|
234
234
|
|
|
235
235
|
if [ -t 1 ]; then
|
|
236
236
|
C_BOLD=$'\033[1m'
|
|
237
|
-
|
|
238
|
-
#
|
|
239
|
-
#
|
|
240
|
-
#
|
|
241
|
-
#
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
237
|
+
# Claude Code light theme — derived from tweakcn.com/r/themes/claude.json.
|
|
238
|
+
# All truecolor (24-bit) — every modern terminal (iTerm2, Termius, kitty,
|
|
239
|
+
# alacritty, gnome-terminal, WezTerm) supports it.
|
|
240
|
+
C_ORANGE=$'\033[38;2;217;119;87m' # #D97757 — Claude primary (brand)
|
|
241
|
+
C_MUTED=$'\033[38;2;136;131;122m' # #88837A — warm gray (muted-foreground)
|
|
242
|
+
C_BORDER=$'\033[38;2;168;162;158m' # #A8A29E — soft border line
|
|
243
|
+
C_INK=$'\033[38;2;61;57;41m' # #3D3929 — body text (used sparingly,
|
|
244
|
+
# only on light terminals; on dark BG
|
|
245
|
+
# we fall back to default fg)
|
|
246
|
+
C_DIM="$C_MUTED" # alias — "dim" now means warm gray
|
|
247
|
+
C_CYAN="$C_ORANGE" # back-compat alias for old printf calls
|
|
248
|
+
C_GREEN=$'\033[38;2;132;161;130m' # muted sage — used only for "ok"
|
|
249
|
+
C_YELLOW=$'\033[38;2;201;161;91m' # muted amber — used only for "warn"
|
|
250
|
+
C_RED=$'\033[38;2;188;102;88m' # muted brick — used only for "err"
|
|
251
|
+
C_MAGENTA=$'\033[38;2;156;120;162m'
|
|
252
|
+
C_BLUE=$'\033[38;2;120;142;168m'
|
|
249
253
|
else
|
|
250
254
|
# Non-TTY (CI, --non-interactive, pipe) — make every colour var safe
|
|
251
255
|
# to reference. Without these the install.sh plan-mode block crashes
|
|
252
256
|
# on `set -u` when running headless.
|
|
253
|
-
C_BOLD=''; C_DIM='';
|
|
257
|
+
C_BOLD=''; C_DIM=''; C_MUTED=''; C_BORDER=''; C_INK=''
|
|
258
|
+
C_ORANGE=''; C_CYAN=''; C_GREEN=''; C_YELLOW=''
|
|
254
259
|
C_RED=''; C_MAGENTA=''; C_BLUE=''
|
|
255
260
|
fi
|
|
256
261
|
|
package/bootstrap/lib/steps.sh
CHANGED
|
@@ -32,6 +32,31 @@ step_system_deps() {
|
|
|
32
32
|
brew) brew install $pkgs newt 2>/dev/null || true ;;
|
|
33
33
|
*) err "install manually: $pkgs (and whiptail/newt for the menu)"; return 1 ;;
|
|
34
34
|
esac
|
|
35
|
+
|
|
36
|
+
# PyYAML — required by every install-side helper that reads the manifest
|
|
37
|
+
# or audit YAMLs (bootstrap/lib/llm-clis.py, manifest-helpers.py, audit
|
|
38
|
+
# generator). apt/dnf already deliver it via the system package above;
|
|
39
|
+
# brew on macOS does NOT, so we install it here with a fallback chain
|
|
40
|
+
# robust to PEP-668 (externally-managed) macOS Pythons.
|
|
41
|
+
if ! python3 -c "import yaml" 2>/dev/null; then
|
|
42
|
+
info "installing pyyaml (required by install helpers)"
|
|
43
|
+
if python3 -m pip install --user --quiet pyyaml 2>>"$LOG_FILE"; then
|
|
44
|
+
ok "pyyaml installed (--user)"
|
|
45
|
+
elif python3 -m pip install --user --quiet --break-system-packages pyyaml 2>>"$LOG_FILE"; then
|
|
46
|
+
ok "pyyaml installed (--user --break-system-packages — macOS Tahoe path)"
|
|
47
|
+
elif have pipx && pipx install pyyaml 2>>"$LOG_FILE"; then
|
|
48
|
+
ok "pyyaml installed via pipx"
|
|
49
|
+
else
|
|
50
|
+
err "pyyaml install failed across all paths — see $LOG_FILE"
|
|
51
|
+
err "manual fix: python3 -m pip install --user --break-system-packages pyyaml"
|
|
52
|
+
return 1
|
|
53
|
+
fi
|
|
54
|
+
# Sanity re-check
|
|
55
|
+
if ! python3 -c "import yaml" 2>/dev/null; then
|
|
56
|
+
err "pyyaml still not importable after install — PATH issue?"
|
|
57
|
+
return 1
|
|
58
|
+
fi
|
|
59
|
+
fi
|
|
35
60
|
# age (optional, non-fatal) — powers the encrypted vault. If missing, the
|
|
36
61
|
# vault transparently falls back to chmod 600 plaintext and the doctor
|
|
37
62
|
# flags it.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.19.
|
|
1
|
+
0.19.8
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentikos/omega-os",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.8",
|
|
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"
|