by sickn33
此技能为 AI 智能体提供持久化、可搜索的内存,以便跨会话保留架构决策、模式和知识,无需手动跟踪。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 agent-memory-mcp 技能" 开始使用
=== agent-memory-mcp 技能 === 作者: sickn33 描述: 此技能为 AI 智能体提供持久化、可搜索的内存,以便跨会话保留架构决策、模式和知识,无需手动跟踪。 使用方法: 1. 调用技能: "使用 agent-memory-mcp 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 agent-memory-mcp 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
productivity
safe
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.
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
Install Dependencies:
cd .agent/skills/agent-memory
npm install
npm run compile
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)
memory_searchSearch for memories by query, type, or tags.
query (string), type? (string), tags? (string[])memory_search({ query: "authentication", type: "pattern" })memory_writeRecord new knowledge or decisions.
key (string), type (string), content (string), tags? (string[])memory_write({ key: "auth-v1", type: "decision", content: "..." })memory_readRetrieve specific memory content by key.
key (string)memory_read({ key: "auth-v1" })memory_statsView analytics on memory usage.
memory_stats({})This skill includes a standalone dashboard to visualize memory usage.
npm run start-dashboard <absolute_path_to_target_workspace>
Access at: http://localhost:3333
View Count
0
Download Count
0
Favorite Count
0
Quality Score
71