@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.
- package/dist/image-digests.json +3 -3
- package/dist/index.js +8 -0
- package/dist/mcp-server.js +8 -0
- package/package.json +1 -1
package/dist/image-digests.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"auth": "sha256:a985e5fb7cce881316e5bb005195255008c884aede2344151485937e7f7304a2",
|
|
3
|
-
"devbox": "sha256:
|
|
4
|
-
"host-cp": "sha256:
|
|
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.
|
|
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" }],
|
package/dist/mcp-server.js
CHANGED
|
@@ -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" }],
|