AG

agent-memory-mcp

A hybrid memory system that allows agents to read, write, and search long-term project knowledge.

Install

mkdir -p .claude/skills/agent-memory-mcp && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/961" && unzip -o skill.zip -d .claude/skills/agent-memory-mcp && rm skill.zip

Installs to .claude/skills/agent-memory-mcp

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

A hybrid memory system that provides persistent, searchable knowledge management for AI agents (Architecture, Patterns, Decisions).
131 charsno explicit “when” trigger
Intermediate

Key capabilities

  • Search memories by query or tags
  • Write new knowledge or decisions
  • Retrieve specific memory content by key
  • View memory usage statistics

How it works

It runs as an MCP server that provides tools to read, write, and search a persistent memory bank. It syncs with project documentation to maintain long-term context.

Inputs & outputs

You give it
Memory key, type, and content
You get back
Stored memory record or search results

When to use agent-memory-mcp

  • Storing architectural design patterns
  • Saving project-wide decision logs
  • Retrieving context about existing codebase structures

About this skill

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:

    git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory
    
  2. Install Dependencies:

    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:

    npm run start-server <project_id> <absolute_path_to_target_workspace>
    

    Example for current directory:

    npm run start-server my-project $(pwd)
    

Capabilities (MCP Tools)

memory_search

Search for memories by query, type, or tags.

  • Args: query (string), type? (string), tags? (string[])
  • Usage: "Find all authentication patterns" -> memory_search({ query: "authentication", type: "pattern" })

memory_write

Record new knowledge or decisions.

  • Args: key (string), type (string), content (string), tags? (string[])
  • Usage: "Save this architecture decision" -> memory_write({ key: "auth-v1", type: "decision", content: "..." })

memory_read

Retrieve specific memory content by key.

  • Args: key (string)
  • Usage: "Get the auth design" -> memory_read({ key: "auth-v1" })

memory_stats

View analytics on memory usage.

  • Usage: "Show memory statistics" -> memory_stats({})

Dashboard

This skill includes a standalone dashboard to visualize memory usage.

npm run start-dashboard <absolute_path_to_target_workspace>

Access at: http://localhost:3333

When not to use it

  • Storing transient session data
  • Replacing primary project documentation

Prerequisites

Node.js v18+

Limitations

  • Requires manual setup of MCP server
  • Memory retrieval depends on query quality

How it compares

It offers a searchable, persistent memory bank for AI agents instead of relying on standard file-based storage.

Compared to similar skills

agent-memory-mcp side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
agent-memory-mcp (this skill)86moReviewIntermediate
synap01moReviewIntermediate
context-management18moNo flagsIntermediate
braindump75moNo flagsBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

software-architecture

davila7

Guide for quality focused software architecture. This skill should be used when users want to write code, design architecture, analyze code, in any case that relates to software development.

333868

planning-with-files

davila7

Implements Manus-style file-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use when starting complex multi-step tasks, research projects, or any task requiring >5 tool calls.

233106

telegram-bot-builder

davila7

Expert in building Telegram bots that solve real problems - from simple automation to complex AI-powered bots. Covers bot architecture, the Telegram Bot API, user experience, monetization strategies, and scaling bots to thousands of users. Use when: telegram bot, bot api, telegram automation, chat bot telegram, tg bot.

106130

scroll-experience

davila7

Expert in building immersive scroll-driven experiences - parallax storytelling, scroll animations, interactive narratives, and cinematic web experiences. Like NY Times interactives, Apple product pages, and award-winning web experiences. Makes websites feel like experiences, not just pages. Use when: scroll animation, parallax, scroll storytelling, interactive story, cinematic website.

101142

humanizer

davila7

Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written. Based on Wikipedia's comprehensive "Signs of AI writing" guide. Detects and fixes patterns including: inflated symbolism, promotional language, superficial -ing analyses, vague attributions, em dash overuse, rule of three, AI vocabulary words, negative parallelisms, and excessive conjunctive phrases. Credits: Original skill by @blader - https://github.com/blader/humanizer

90175

game-development

davila7

Game development orchestrator. Routes to platform-specific skills based on project needs.

70195

Search skills

Search the agent skills registry