engrm 0.4.41 → 0.4.42

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 CHANGED
@@ -139,6 +139,15 @@ Hermes should connect with a bearer token header:
139
139
  }
140
140
  ```
141
141
 
142
+ If Hermes and OpenClaw run on the same machine, use `http://localhost:3767/mcp`.
143
+ That is the correct MCP URL for same-host deployments.
144
+
145
+ On macOS, watch out for mixed global npm prefixes. If you have both
146
+ `~/.npm-global` and `/opt/homebrew` installs, make sure the long-running Engrm
147
+ HTTP service points at the same package location that your `npm install -g`
148
+ updates. A stale LaunchAgent path can keep serving an older Engrm build even
149
+ after a successful npm upgrade.
150
+
142
151
  Fleet writes:
143
152
  - use the reserved project name `shared-experience` by default
144
153
  - stay `shared` unless explicitly overridden
@@ -3266,7 +3266,7 @@ import { existsSync as existsSync3, readFileSync as readFileSync2, writeFileSync
3266
3266
  import { join as join3 } from "node:path";
3267
3267
  import { homedir } from "node:os";
3268
3268
  var STATE_PATH = join3(homedir(), ".engrm", "config-fingerprint.json");
3269
- var CLIENT_VERSION = "0.4.41";
3269
+ var CLIENT_VERSION = "0.4.42";
3270
3270
  function hashFile(filePath) {
3271
3271
  try {
3272
3272
  if (!existsSync3(filePath))
@@ -3338,7 +3338,7 @@ function buildBeacon(db, config, sessionId, metrics) {
3338
3338
  sentinel_used: valueSignals.security_findings_count > 0,
3339
3339
  risk_score: riskScore,
3340
3340
  stacks_detected: stacks,
3341
- client_version: "0.4.41",
3341
+ client_version: "0.4.42",
3342
3342
  context_observations_injected: metrics?.contextObsInjected ?? 0,
3343
3343
  context_total_available: metrics?.contextTotalAvailable ?? 0,
3344
3344
  recall_attempts: metrics?.recallAttempts ?? 0,
package/dist/server.js CHANGED
@@ -23083,7 +23083,7 @@ process.on("SIGTERM", () => {
23083
23083
  function buildServer() {
23084
23084
  const server = new McpServer({
23085
23085
  name: "engrm",
23086
- version: "0.4.41"
23086
+ version: "0.4.42"
23087
23087
  });
23088
23088
  server.tool("save_observation", "Directly save a durable memory item now. Use this when something should be remembered on purpose instead of waiting for an end-of-session digest.", {
23089
23089
  type: exports_external.enum([
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "engrm",
3
- "version": "0.4.41",
3
+ "version": "0.4.42",
4
4
  "description": "Shared memory across devices, sessions, and agents, with thin MCP tools for durable capture, live continuity, and Hermes-ready remote MCP support",
5
5
  "mcpName": "io.github.dr12hes/engrm",
6
6
  "type": "module",