@zerwiz/ymir 0.1.17 → 0.1.19
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/CHANGELOG.md +15 -0
- package/package.json +1 -7
- package/scripts/start.sh +9 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## 2026-09-17 — the fork stands the machine
|
|
4
|
+
|
|
5
|
+
- **`config/app-repos.yaml` (public)** — the five app repos, the fork's road:
|
|
6
|
+
a fresh clone with no hoard registry falls back to this map in the installer's
|
|
7
|
+
`apps` step, so `git clone` + `bin/ymir-install.sh` pull the four surfaces as
|
|
8
|
+
they would on the author's seat. Verified on a clean clone (`ymir-plan.sh`:
|
|
9
|
+
hlidskjalf/odrerir/sessrumnir/smidja all `DO`). The hoard registry stays
|
|
10
|
+
authoritative when present.
|
|
11
|
+
|
|
12
|
+
## 2026-09-17 — the phantom optional pins, cut
|
|
13
|
+
|
|
14
|
+
- The platform's stale \`optionalDependencies\` (sessrumnir pinned at the broken
|
|
15
|
+
0.1.9) shadowed the required \`^0.1.10\` — npm never fetched the good seat.
|
|
16
|
+
Removed; the required deps now resolve to latest (0.1.18).
|
|
17
|
+
|
|
3
18
|
## 2026-09-17 — the packaged seat carries the watch
|
|
4
19
|
|
|
5
20
|
- **The @zerwiz/ymir tarball now ships every surface the runtime reads**: the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zerwiz/ymir",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.19",
|
|
4
4
|
"description": "Ymir \u2014 the single-tenant agent operating system. Omarchy-first, host-aware, self-healing.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/zerwiz/ymir",
|
|
@@ -67,12 +67,6 @@
|
|
|
67
67
|
"test": "bash .agents/skills/galdr-ymirsystem/scripts/compliance-check.sh",
|
|
68
68
|
"compliance": "bash .agents/skills/galdr-ymirsystem/scripts/compliance-check.sh"
|
|
69
69
|
},
|
|
70
|
-
"optionalDependencies": {
|
|
71
|
-
"@zerwiz/hlidskjalf": "0.1.1",
|
|
72
|
-
"@zerwiz/odrerir": "0.1.1",
|
|
73
|
-
"@zerwiz/sessrumnir": "0.1.9",
|
|
74
|
-
"@zerwiz/smidja-factory": "^0.1.0"
|
|
75
|
-
},
|
|
76
70
|
"dependencies": {
|
|
77
71
|
"@zerwiz/hlidskjalf": "^0.1.1",
|
|
78
72
|
"@zerwiz/odrerir": "^0.1.1",
|
package/scripts/start.sh
CHANGED
|
@@ -289,6 +289,15 @@ echo "$PID" > "$PID_FILE"
|
|
|
289
289
|
# Wait for the port to answer (max ~15s), then say what is true.
|
|
290
290
|
for _ in $(seq 1 30); do
|
|
291
291
|
if curl -s -o /dev/null "http://127.0.0.1:${PORT}/"; then
|
|
292
|
+
# The windows — the raise opens all four when a display is present, so
|
|
293
|
+
# 'ymir raise' stands the whole hall: the high seat, the board, the
|
|
294
|
+
# smithy's eye, and the seat-hall.
|
|
295
|
+
if [ -n "${WAYLAND_DISPLAY:-${DISPLAY:-}}" ]; then
|
|
296
|
+
"$SCRIPT_DIR/electron.sh" start --view hlidskjalf >/dev/null 2>&1 &
|
|
297
|
+
"$SCRIPT_DIR/electron.sh" start --view odrerir >/dev/null 2>&1 &
|
|
298
|
+
"$SCRIPT_DIR/electron.sh" start --view smidja >/dev/null 2>&1 &
|
|
299
|
+
"$ROOT/bin/ymir.js" sessrumnir >/dev/null 2>&1 &
|
|
300
|
+
fi
|
|
292
301
|
echo "Hlidskjalf raised (pid $PID) → http://127.0.0.1:${PORT}/"
|
|
293
302
|
echo "Logs: $LOG"
|
|
294
303
|
exit 0
|