@pleri/olam-cli 0.1.208 → 0.1.210
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/README.md +5 -3
- package/dist/image-digests.json +8 -8
- package/dist/index.js +796 -437
- package/dist/mcp-server.js +200 -32
- 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/host-cp/src/server.mjs +18 -5
- package/memory-hooks/agent-memory-gate.mjs +103 -0
- package/memory-hooks/agentmemory-save.mjs +4 -0
- package/memory-hooks/agentmemory-session-recall.js +8 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,13 +79,15 @@ olam mcp uninstall # idempotent; symmetric
|
|
|
79
79
|
```
|
|
80
80
|
|
|
81
81
|
Auto-detects whether `olam` is on PATH (writes `command: "olam"`); otherwise
|
|
82
|
-
falls back to `npx -y @pleri/olam-cli mcp serve`.
|
|
83
|
-
|
|
82
|
+
falls back to `npx -y @pleri/olam-cli@latest mcp serve`. The `@latest` pin is
|
|
83
|
+
deliberate — a bare `npx -y @pleri/olam-cli` reuses a stale cached build without
|
|
84
|
+
re-checking the registry, so a published upgrade can be silently shadowed by an
|
|
85
|
+
old cached version. Paste-in for `~/.claude.json` or a project `.mcp.json`:
|
|
84
86
|
|
|
85
87
|
```json
|
|
86
88
|
{
|
|
87
89
|
"mcpServers": {
|
|
88
|
-
"olam": { "command": "npx", "args": ["-y", "@pleri/olam-cli", "mcp", "serve"] }
|
|
90
|
+
"olam": { "command": "npx", "args": ["-y", "@pleri/olam-cli@latest", "mcp", "serve"] }
|
|
89
91
|
}
|
|
90
92
|
}
|
|
91
93
|
```
|
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:90c00c3d75cc697539a0d6663fdf30d67fac787171ff1c53a3c1fa1755fcecb3",
|
|
3
|
+
"devbox": "sha256:6d8eccfb38c5379a8977bbd79e59c36ce7d45b4cb7f834d76c7b0bdbc7c27c43",
|
|
4
|
+
"devbox-base": "sha256:e9ddfc1305549e76608d4da12d2930e8c10be1e3c198db04b7b3b21e4bffc284",
|
|
5
|
+
"host-cp": "sha256:5d8726cbe667359e64d2abe53150c80c870a2d71960c2f41833a3c8719abee12",
|
|
6
|
+
"kg-service": "sha256:829de080754fe0728b0c0368b6083a6679baff33745dd81c68fadc4ccea7bf7d",
|
|
7
|
+
"memory-service": "sha256:2b40d835b807fa49316a9db0215ee4ac6b36e2403c8170cfb4a70067115ad292",
|
|
8
|
+
"mcp-auth": "sha256:c7041e093e23acdad36eb2a611e66e925061b79e41a5b8a3be28bba57d6624c5",
|
|
9
9
|
"$schema_version": 1,
|
|
10
|
-
"$published_version": "0.1.
|
|
10
|
+
"$published_version": "0.1.210",
|
|
11
11
|
"$registry": "ghcr.io/pleri"
|
|
12
12
|
}
|