/agent-memory-mcp
A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
One skill from agentic-awesome-skills.
shell
$ npx -y skills add sickn33/agentic-awesome-skills --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
Stars43,759
Forks6,464
LanguagePython
LicenseMIT
Ships with agentic-awesome-skills
SKILL.md
agent-memory-mcp.SKILL.md
--- name: agent-memory-mcp description: "A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions)." risk: unknown source: community date_added: "2026-02-27" --- # 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
