@pleri/olam-cli 0.1.208 → 0.1.209
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 +8 -8
- package/dist/index.js +2 -0
- package/dist/mcp-server.js +7 -0
- package/hermes-bundle/version.json +1 -1
- package/host-cp/k8s/manifests/50-deployment.yaml +1 -1
- package/host-cp/k8s/manifests/auth-service/50-deployment.yaml +1 -1
- package/host-cp/k8s/manifests/kg-service/50-deployment.yaml +1 -1
- package/host-cp/k8s/manifests/mcp-auth-service/50-deployment.yaml +1 -1
- package/host-cp/k8s/manifests/memory-service/50-deployment.yaml +1 -1
- package/package.json +1 -1
package/dist/image-digests.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"auth": "sha256:
|
|
3
|
-
"devbox": "sha256:
|
|
4
|
-
"devbox-base": "sha256:
|
|
5
|
-
"host-cp": "sha256:
|
|
6
|
-
"kg-service": "sha256:
|
|
7
|
-
"memory-service": "sha256:
|
|
8
|
-
"mcp-auth": "sha256:
|
|
2
|
+
"auth": "sha256:95167696ea6e6146df66a325193283d4418b07c77540c17e1b33a5aa15b12092",
|
|
3
|
+
"devbox": "sha256:a8a4316cf46f4a0050e7f2ae29ae98854e29e55692ed0de1fc362d016d94231b",
|
|
4
|
+
"devbox-base": "sha256:de661a8b8fd9ed566beecbf5cfaffffaa31f80facc4ba136dfd7fad4b5d25cbf",
|
|
5
|
+
"host-cp": "sha256:90d17380f48eb37c26d9050105d0ebc037e71a610ffd02998aa2f05a8a31caba",
|
|
6
|
+
"kg-service": "sha256:8d2b10b56dc5db06470d86f8097fc14c2e0f4b03a5a9a15817673f858ed3a0db",
|
|
7
|
+
"memory-service": "sha256:b3f650cd4ad766d7d221896db03ac4110f80dd106cbb16bad4ca9c3a66642520",
|
|
8
|
+
"mcp-auth": "sha256:1b0aa93ed9e3bf517715b02542fca075265f01cc1d73320bfe60a8cad700d1df",
|
|
9
9
|
"$schema_version": 1,
|
|
10
|
-
"$published_version": "0.1.
|
|
10
|
+
"$published_version": "0.1.209",
|
|
11
11
|
"$registry": "ghcr.io/pleri"
|
|
12
12
|
}
|
package/dist/index.js
CHANGED
|
@@ -53836,6 +53836,8 @@ function registerMcpServe(cmd) {
|
|
|
53836
53836
|
return;
|
|
53837
53837
|
}
|
|
53838
53838
|
await import(bundlePath);
|
|
53839
|
+
await new Promise(() => {
|
|
53840
|
+
});
|
|
53839
53841
|
});
|
|
53840
53842
|
}
|
|
53841
53843
|
|
package/dist/mcp-server.js
CHANGED
|
@@ -57355,6 +57355,13 @@ async function main() {
|
|
|
57355
57355
|
const transport = new StdioServerTransport();
|
|
57356
57356
|
await server.connect(transport);
|
|
57357
57357
|
logger.info("Olam MCP server running on stdio transport");
|
|
57358
|
+
const shutdown = (reason) => {
|
|
57359
|
+
logger.info("Olam MCP client disconnected; shutting down", { reason });
|
|
57360
|
+
process.exit(0);
|
|
57361
|
+
};
|
|
57362
|
+
process.stdin.once("end", () => shutdown("stdin end"));
|
|
57363
|
+
process.stdin.once("close", () => shutdown("stdin close"));
|
|
57364
|
+
process.stdin.resume();
|
|
57358
57365
|
}
|
|
57359
57366
|
main().catch((error51) => {
|
|
57360
57367
|
logger.error("Fatal error starting Olam MCP server", {
|
|
@@ -118,7 +118,7 @@ spec:
|
|
|
118
118
|
# k3d), started by `olam upgrade` Step 0.7 — not inside this Pod.
|
|
119
119
|
containers:
|
|
120
120
|
- name: olam-host-cp
|
|
121
|
-
image: ghcr.io/pleri/olam-host-cp@sha256:
|
|
121
|
+
image: ghcr.io/pleri/olam-host-cp@sha256:90d17380f48eb37c26d9050105d0ebc037e71a610ffd02998aa2f05a8a31caba
|
|
122
122
|
imagePullPolicy: IfNotPresent
|
|
123
123
|
securityContext:
|
|
124
124
|
runAsNonRoot: true
|
|
@@ -70,7 +70,7 @@ spec:
|
|
|
70
70
|
mountPath: /data
|
|
71
71
|
containers:
|
|
72
72
|
- name: olam-auth-service
|
|
73
|
-
image: ghcr.io/pleri/olam-auth@sha256:
|
|
73
|
+
image: ghcr.io/pleri/olam-auth@sha256:95167696ea6e6146df66a325193283d4418b07c77540c17e1b33a5aa15b12092
|
|
74
74
|
imagePullPolicy: IfNotPresent
|
|
75
75
|
securityContext:
|
|
76
76
|
runAsNonRoot: true
|
|
@@ -61,7 +61,7 @@ spec:
|
|
|
61
61
|
mountPath: /data
|
|
62
62
|
containers:
|
|
63
63
|
- name: olam-kg-service
|
|
64
|
-
image: ghcr.io/pleri/olam-kg-service@sha256:
|
|
64
|
+
image: ghcr.io/pleri/olam-kg-service@sha256:8d2b10b56dc5db06470d86f8097fc14c2e0f4b03a5a9a15817673f858ed3a0db
|
|
65
65
|
imagePullPolicy: IfNotPresent
|
|
66
66
|
securityContext:
|
|
67
67
|
runAsNonRoot: true
|
|
@@ -68,7 +68,7 @@ spec:
|
|
|
68
68
|
mountPath: /data
|
|
69
69
|
containers:
|
|
70
70
|
- name: olam-mcp-auth-service
|
|
71
|
-
image: ghcr.io/pleri/olam-mcp-auth@sha256:
|
|
71
|
+
image: ghcr.io/pleri/olam-mcp-auth@sha256:1b0aa93ed9e3bf517715b02542fca075265f01cc1d73320bfe60a8cad700d1df
|
|
72
72
|
imagePullPolicy: IfNotPresent
|
|
73
73
|
securityContext:
|
|
74
74
|
runAsNonRoot: true
|
|
@@ -70,7 +70,7 @@ spec:
|
|
|
70
70
|
# bootstrap-placeholder comment + run `npm run refresh:manifest-digests`
|
|
71
71
|
# once ghcr.io/pleri/olam-memory-service has a real published digest.
|
|
72
72
|
# bootstrap-placeholder: pre-publish; refresh after first release
|
|
73
|
-
image: ghcr.io/pleri/olam-memory-service@sha256:
|
|
73
|
+
image: ghcr.io/pleri/olam-memory-service@sha256:b3f650cd4ad766d7d221896db03ac4110f80dd106cbb16bad4ca9c3a66642520
|
|
74
74
|
imagePullPolicy: IfNotPresent
|
|
75
75
|
securityContext:
|
|
76
76
|
runAsNonRoot: true
|