Install
openclaw skills install micro-memory智能记忆系统,支持记忆添加、搜索、标签管理、强度追踪、复习提醒及统计健康报告。
openclaw skills install micro-memory🧠 Not just a note-taking tool, but your external brain that truly remembers.
不只是笔记工具,而是真正会"记忆"的外部大脑。
Micro Memory is an intelligent memory system inspired by how the human brain works:
Micro Memory 是一个智能记忆系统,灵感来自人脑的工作方式:
| Feature | Traditional Notes | Micro Memory |
|---|---|---|
| Storage | Static files | Living memories with strength |
| Search | Simple text | Multi-keyword + Regex + Fuzzy |
| Organization | Folders/tags | Semantic networks |
| Retention | Manual review | Spaced repetition scheduling |
| Health | No insight | Memory health reports |
| Compression | None | TF-IDF smart compression |
| 特性 | 传统笔记 | Micro Memory |
|---|---|---|
| 存储 | 静态文件 | 有强度的活记忆 |
| 搜索 | 简单文本 | 多关键词 + 正则 + 模糊 |
| 组织 | 文件夹/标签 | 语义网络 |
| 留存 | 手动复习 | 间隔重复调度 |
| 健康 | 无洞察 | 记忆健康报告 |
| 压缩 | 无 | TF-IDF 智能压缩 |
memory add "Learned about TypeScript decorators"
memory add "Important meeting with client" --tag=work --type=longterm --importance=5
memory add "Related concept" --tag=study --link=1,2
memory search "TypeScript" # Multi-keyword
memory search "Type.*script" --regex # Regex pattern
memory search "Typscript" --fuzzy # Fuzzy matching
memory search "meeting client" --tag=work # Filtered search
memory link --from=1 --to=2,3 # Connect memories
memory graph --id=1 # Visualize connections
memory graph # Full network view
Memories have 5 strength levels that decay over time:
| Level | Score | Icon | Description |
|---|---|---|---|
| 💎 Permanent | 80-100 | 💎 | Permanent memory |
| 💪 Strong | 60-79 | 💪 | Strong memory |
| 📊 Stable | 40-59 | 📊 | Stable memory |
| ⚠️ Weak | 20-39 | ⚠️ | Weak memory - needs review |
| 🔴 Critical | 0-19 | 🔴 | Critical - about to be forgotten |
Based on SM-2 algorithm:
memory health # Overall system health
memory stats # Detailed statistics
memory strength # Strength distribution
memory compress --auto # Auto-compress weak memories
memory compress --id=1 # Compress specific memory
memory archive --older_than=30 # Archive old memories
memory archive --restore=1 # Restore from archive
npm install
npm run build
# Add a memory
memory add "Learned about neural networks"
# List all memories
memory list
# Search memories
memory search "neural"
# Check health
memory health
# Review due memories
memory review --today
As a native skill, Micro Memory auto-triggers on:
| Trigger | Action |
|---|---|
| "记住..." / "记录..." | Auto-add memory |
| "搜索记忆..." / "找找之前..." | Auto-search |
| "列出记忆" / "我的记忆" | Auto-list |
| "记忆健康" | Show health report |
| "复习记忆" | Show today's reviews |
store/
├── index.json # Main memory index
├── links.json # Association networks
├── reviews.json # Review schedules
├── store.md # Markdown backup
└── archive/ # Archived memories
micro-memory/
├── src/
│ ├── index.ts # CLI entry
│ ├── memory.ts # Core memory management
│ ├── strength.ts # Strength decay system
│ ├── links.ts # Network associations
│ ├── review.ts # Spaced repetition
│ ├── health.ts # Health analytics
│ ├── archive.ts # Compression & archiving
│ └── utils.ts # Utilities
└── dist/ # Compiled JavaScript
Your thoughts deserve to be remembered. Not just stored.
你的想法值得被记住,而不只是被存储。