A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
agentMemory project into your agent's workspace or a parallel directory:git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory
cd .agent/skills/agent-memory
npm install
npm run compile
npm run start-server <project_id> <absolute_path_to_target_workspace>
npm run start-server my-project $(pwd)
memory_searchquery (string), type? (string), tags? (string[])memory_search({ query: "authentication", type: "pattern" })memory_writekey (string), type (string), content (string), tags? (string[])memory_write({ key: "auth-v1", type: "decision", content: "..." })memory_readkey (string)memory_read({ key: "auth-v1" })memory_statsmemory_stats({})npm run start-dashboard <absolute_path_to_target_workspace>