A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
Add this skill
npx mdskills install sickn33/agent-memory-mcpPersistent memory system with clear tool descriptions and setup, but lacks agent-specific triggers
1---2name: agent-memory-mcp3author: Amit Rathiesh4description: A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).5---67# Agent Memory Skill89This skill provides a persistent, searchable memory bank that automatically syncs with project documentation. It runs as an MCP server to allow reading/writing/searching of long-term memories.1011## Prerequisites1213- Node.js (v18+)1415## Setup16171. **Clone the Repository**:18 Clone the `agentMemory` project into your agent's workspace or a parallel directory:1920 ```bash21 git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory22 ```23242. **Install Dependencies**:2526 ```bash27 cd .agent/skills/agent-memory28 npm install29 npm run compile30 ```31323. **Start the MCP Server**:33 Use the helper script to activate the memory bank for your current project:3435 ```bash36 npm run start-server <project_id> <absolute_path_to_target_workspace>37 ```3839 _Example for current directory:_4041 ```bash42 npm run start-server my-project $(pwd)43 ```4445## Capabilities (MCP Tools)4647### `memory_search`4849Search for memories by query, type, or tags.5051- **Args**: `query` (string), `type?` (string), `tags?` (string[])52- **Usage**: "Find all authentication patterns" -> `memory_search({ query: "authentication", type: "pattern" })`5354### `memory_write`5556Record new knowledge or decisions.5758- **Args**: `key` (string), `type` (string), `content` (string), `tags?` (string[])59- **Usage**: "Save this architecture decision" -> `memory_write({ key: "auth-v1", type: "decision", content: "..." })`6061### `memory_read`6263Retrieve specific memory content by key.6465- **Args**: `key` (string)66- **Usage**: "Get the auth design" -> `memory_read({ key: "auth-v1" })`6768### `memory_stats`6970View analytics on memory usage.7172- **Usage**: "Show memory statistics" -> `memory_stats({})`7374## Dashboard7576This skill includes a standalone dashboard to visualize memory usage.7778```bash79npm run start-dashboard <absolute_path_to_target_workspace>80```8182Access at: `http://localhost:3333`83
Full transparency — inspect the skill content before installing.