Fixes
This release fixes all installation bugs reported by users trying to set up agentmemory for the first time.
npm install fails (ERESOLVE)
@anthropic-ai/claude-agent-sdk@0.2.56 requires zod@^4.0.0 as a peer dependency, but agentmemory had zod@^3.23.0. Updated to zod@^4.0.0.
Docker: "Config file not found: /app/config.yaml"
docker-compose.yml was missing the config mount. Added ./iii-config.yaml:/app/config.yaml:ro volume.
Docker: engine unreachable after container starts
host: 127.0.0.1 in iii-config.yaml only listened on the container's loopback, making Docker port mapping useless. Changed to 0.0.0.0.
npm start infinite reconnection loop
npm start ran index.mjs directly (no engine auto-start). Users following the "from source" README got endless WebSocket reconnection errors. Changed to cli.mjs which auto-detects and starts iii-engine.
CLI thinks engine is down when it's running
Health check hit /agentmemory/livez which requires a registered worker — returns 404 even when the engine is up. Fixed to detect any HTTP response on the engine port.
Viewer port conflict crashes the process
EADDRINUSE on port 3113 crashed the entire agentmemory process. Now logs a warning and continues without the viewer.
README
- Fixed step numbering (was 1, 2, 4 → now 1, 2, 3)
- Updated version in health example
Full Changelog: v0.7.4...v0.7.5