Overview
- Skill Key
- ayalili/smart-memory-manager
- Author
- ayalili
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/ayalili/smart-memory-manager
- Latest Commit SHA
- a9cb5cbde9d8d4d19bb0e3c6dda2694ed9b387ff
Intelligent memory management for agents with short/long-term memory layering, semantic search, auto summarization, RAG enhancement
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 smart-memory-manager 技能。 若已安装,则直接安装 smart-memory-manager 技能。
# 🧠 智能记忆管理器
## 核心亮点
1. 📚 **分层记忆体系**:短期/长期/重要记忆三层架构,自动清理过期记忆,解决上下文溢出问题
2. 🔍 **多模式检索**:支持关键词/语义/混合三种检索模式,快速召回相关记忆,提升RAG准确率
3. 📝 **自动摘要能力**:一键生成记忆摘要,支持长会话上下文压缩,token占用减少70%
4. 💾 **持久化支持**:支持内存/磁盘持久化,重启后记忆不丢失
## 🎯 适用场景
- 长会话Agent、聊天机器人
- RAG应用的记忆层
- 需要长期记忆的任务型Agent
- 客服、助理类Agent的上下文管理
## 📝 参数说明
| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| action | string | 是 | 操作类型:add/search/summarize/clear/list/load/save |
| content | string | 否 | add操作必填,记忆内容 |
| type | string | 否 | add操作可选,记忆类型:short-term/long-term/important,默认short-term |
| query | string | 否 | search操作必填,搜索关键词 |
| limit | number | 否 | search/list操作可选,返回结果数量,默认5/20 |
| typeFilter | string | 否 | 所有操作可选,过滤记忆类型,默认all |
| persist | boolean | 否 | add操作可选,是否持久化存储,默认false |
| persistPath | string | 否 | load/save操作可选,持久化文件路径,默认./memory-store.json |
## 💡 开箱即用示例
### 添加记忆
```typescript
// 添加长期记忆
await skills.smartMemoryManager({
action: "add",
content: "用户喜欢喝咖啡,不加糖,每周三下午喝奶茶",
type: "long-term",
persist: true
});
```
### 搜索记忆
```typescript
const result = await skills.smartMemoryManager({
action: "search",
query: "用户喜好",
limit: 3,
searchMode: "hybrid" // 关键词+语义混合检索
});
```
### 生成会话摘要
```typescript
const summary = await skills.smartMemoryManager({
action: "summarize",
typeFilter: "short-term",
maxTokens: 500
});
```
### 持久化与加载
```typescript
// 保存所有记忆到磁盘
await skills.smartMemoryManager({
action: "save",
persistPath: "./my-memory.json"
});
// 从磁盘加载记忆
await skills.smartMemoryManager({
action: "load",
persistPath: "./my-memory.json"
});
```
## 🔧 技术实现说明
- 内置记忆自动清理机制,短期记忆最多保留100条,...
# 🧠 智能记忆管理器
## 核心亮点
1. 📚 **分层记忆体系**:短期/长期/重要记忆三层架构,自动清理过期记忆,解决上下文溢出问题
2. 🔍 **多模式检索**:支持关键词/语义/混合三种检索模式,快速召回相关记忆,提升RAG准确率
3. 📝 **自动摘要能力**:一键生成记忆摘要,支持长会话上下文压缩,token占用减少70%
4. 💾 **持久化支持**:支持内存/磁盘持久化,重启后记忆不丢失
## 🎯 适用场景
- 长会话Agent、聊天机器人
- RAG应用的记忆层
- 需要长期记忆的任务型Agent
- 客服、助理类Agent的上下文管理
## 📝 参数说明
| 参数 | 类型 | 必填 | 说明 |
|------|------|------|------|
| action | string | 是 | 操作类型:add/search/summarize/clear/list/load/save |
| content | string | 否 | add操作必填,记忆内容 |
| type | string | 否 | add操作可选,记忆类型:short-term/long-term/important,默认short-term |
| query | string | 否 | search操作必填,搜索关键词 |
| limit | number | 否 | search/list操作可选,返回结果数量,默认5/20 |
| typeFilter | string | 否 | 所有操作可选,过滤记忆类型,默认all |
| persist | boolean | 否 | add操作可选,是否持久化存储,默认false |
| persistPath | string | 否 | load/save操作可选,持久化文件路径,默认./memory-store.json |
## 💡 开箱即用示例
### 添加记忆
```typescript
// 添加长期记忆
await skills.smartMemoryManager({
action: "add",
content: "用户喜欢喝咖啡,不加糖,每周三下午喝奶茶",
type: "long-term",
persist: true
});
```
### 搜索记忆
```typescript
const result = await skills.smartMemoryManager({
action: "search",
query: "用户喜好",
limit: 3,
searchMode: "hybrid" // 关键词+语义混合检索
});
```
### 生成会话摘要
```typescript
const summary = await skills.smartMemoryManager({
action: "summarize",
typeFilter: "short-term",
maxTokens: 500
});
```
### 持久化与加载
```typescript
// 保存所有记忆到磁盘
await skills.smartMemoryManager({
action: "save",
persistPath: "./my-memory.json"
});
// 从磁盘加载记忆
await skills.smartMemoryManager({
action: "load",
persistPath: "./my-memory.json"
});
```
## 🔧 技术实现说明
- 内置记忆自动清理机制,短期记忆最多保留100条,...
youmind-openlab
AI skill for OpenClaw & Claude Code — recommend from 10000+ Nano Banana Pro (Gemini) image prompts. Smart search by use case, content remix, sample images.
23blocks-os
AI Agent Orchestrator with Skills System - Give AI Agents superpowers: memory search, code graph queries, agent-to-agent messaging. Manage Claude, Codex or any AI Agent from one dashboard. Move Agents between computers and locations
hashgraph-online
AI agent skills for the Universal Registry - search, chat, and register 72,000+ agents across 14+ protocols. Works with Claude, Codex, Cursor, OpenClaw, and any AI assistant.
rito-w
A cross-platform skills manager for AI IDEs. Search marketplace, download locally, and install to Claude, Cursor, Windsurf, and more with one click.
besoeasy
Battle-tested skill library for AI agents. Save 98% of API costs with ready-to-use code for crypto, PDFs, search, web scraping & more. No trial-and-error, no expensive APIs.
zeropointrepo
YouTube Transcript API skills for AI agents. Get transcripts, search videos, browse channels. Works with OpenClaw, ClawdBot, Claude Code, Cursor, Windsurf.