The new release of Knowledge-and-Memory-Management, v0.0.2, focuses on portability and clean abstractions for developers building agents that ingest and retain information. The primary change is the replacement of all hardcoded personal paths with the $AGENT_HOME environment variable, ensuring consistent behavior across local dev, containers, and CI runs. This update targets developers who need reliable knowledge pipelines without environment-specific script patches.
Portability via $AGENT_HOME
Earlier prototypes used absolute paths tied to one machine, breaking on every clone or deployment. v0.0.2 standardizes the data root across all collectors and memory backends. Set AGENT_HOME once in your shell profile or Docker configuration:
export AGENT_HOME=/opt/agent/data
All internal paths for configuration, vector indices, and collected documents become relative to this variable. The release drops
Top comments (0)