/agent-memory-mcp
A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
One skill from claude-code-templates.
shell
$ npx -y skills add davila7/claude-code-templates --skill agent-memory-mcp --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/agent-memory-mcp
Context preview
The summary Claude sees to decide when to auto-load this skill.
A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
Stats
Stars29,856
Forks3,189
LanguagePython
LicenseMIT
Ships with claude-code-templates
SKILL.md
agent-memory-mcp.SKILL.md
--- name: agent-memory-mcp author: Amit Rathiesh description: A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions). --- # Agent Memory Skill This 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. ## Prerequisites - Node.js (v18+) ## Setup 1. **Clone the Repository**: Clone the `agentMemory` project into your agent's workspace or a parallel directory: ```bash git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory ``` 2. **Install Dependencies**: ```bash cd .agent/skills/agent-memory npm install npm run compile ``` 3. **Start the MCP Server**: Use the helper script to activate the memory bank for your current project: ```bash npm run start-server <project_id> <absolute_path_to_target_workspace> ```
