@pleri/olam-cli 0.1.94 → 0.1.96

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "auth": "sha256:a985e5fb7cce881316e5bb005195255008c884aede2344151485937e7f7304a2",
3
- "devbox": "sha256:876240f29bf7a131518a49645ee2455091bf8c03236b247dfa773c05a3f4c960",
4
- "host-cp": "sha256:b609c001dc90de70996d115ed326841a58bd476b824ec112e5281e63192e31d5",
3
+ "devbox": "sha256:4b65df5e85a0bdbeee0879b99ae45372dacb22ce7235ac88a8f2a7523bb513b4",
4
+ "host-cp": "sha256:e1bf1e561a00fe55878a66a8a483777a7570200aa923259eb6e95269463b14c5",
5
5
  "mcp-auth": "sha256:e47169ad3fbc9cab216248fecbc56874343a5daab84b1f18d67529b7d415cf95",
6
6
  "$schema_version": 1,
7
- "$published_version": "0.1.94",
7
+ "$published_version": "0.1.96",
8
8
  "$registry": "ghcr.io/pleri"
9
9
  }
package/dist/index.js CHANGED
@@ -5900,6 +5900,14 @@ var init_container2 = __esm({
5900
5900
  // but Linux needs this explicit mapping so fetch-creds.mjs can reach
5901
5901
  // the olam-auth container on the host network.
5902
5902
  ExtraHosts: ["host.docker.internal:host-gateway"],
5903
+ // Docker --init: make tini PID 1 instead of `node server.mjs` so
5904
+ // orphaned grandchildren (Claude sub-agent spawns, bash pipes,
5905
+ // backgrounded shells in ttyd) get reaped via SIGCHLD. Without
5906
+ // this, zombie <defunct> processes accumulate until the kernel
5907
+ // task table fills and exec() starts failing — which wedges
5908
+ // Claude after ~hours of dogfooding. See PR description for the
5909
+ // 3-world evidence chain (coral-sky / jade-bay / frost-fin).
5910
+ Init: true,
5903
5911
  PortBindings: {
5904
5912
  [`${CONTROL_PLANE_PORT}/tcp`]: [{ HostPort: String(hostControlPlanePort), HostIp: "127.0.0.1" }],
5905
5913
  "7681/tcp": [{ HostPort: String(hostTtydPort), HostIp: "127.0.0.1" }],
@@ -23204,6 +23204,14 @@ var createWorldContainer = async (docker, worldId, worldName, image, env, resour
23204
23204
  // but Linux needs this explicit mapping so fetch-creds.mjs can reach
23205
23205
  // the olam-auth container on the host network.
23206
23206
  ExtraHosts: ["host.docker.internal:host-gateway"],
23207
+ // Docker --init: make tini PID 1 instead of `node server.mjs` so
23208
+ // orphaned grandchildren (Claude sub-agent spawns, bash pipes,
23209
+ // backgrounded shells in ttyd) get reaped via SIGCHLD. Without
23210
+ // this, zombie <defunct> processes accumulate until the kernel
23211
+ // task table fills and exec() starts failing — which wedges
23212
+ // Claude after ~hours of dogfooding. See PR description for the
23213
+ // 3-world evidence chain (coral-sky / jade-bay / frost-fin).
23214
+ Init: true,
23207
23215
  PortBindings: {
23208
23216
  [`${CONTROL_PLANE_PORT}/tcp`]: [{ HostPort: String(hostControlPlanePort), HostIp: "127.0.0.1" }],
23209
23217
  "7681/tcp": [{ HostPort: String(hostTtydPort), HostIp: "127.0.0.1" }],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pleri/olam-cli",
3
- "version": "0.1.94",
3
+ "version": "0.1.96",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "olam": "./bin/olam.cjs"