MAMP
/install mamp-memory
MAMP — Mark AI Memory Protocol
Gives AI agents persistent, searchable memory using SQLite.
When to Use
- User says "remember what I told you last time"
- Agent needs to recall facts across conversations
- User asks about past topics, preferences, or decisions
- Context window is filling up and older info needs to be summarized
Core Concepts
- Session — a conversation, has an ID, survives restarts
- Turn — one message in a session (role: user/assistant)
- Tag — labels for a turn, e.g. ["finance", "important"]
- Priority — importance level: critical, normal, trivial
Key Methods
from importlib.util import spec_from_file_location, module_from_spec
spec = spec_from_file_location("mamp", "ai_memory_protocol_v1.2.0.py")
mod = module_from_spec(spec)
spec.loader.exec_module(mod)
# Manual mode — explicit add_turn() calls
sm = mod.SessionManager()
sm.start_conversation()
sm.add_turn("user", "I prefer dark mode")
sm.add_turn("assistant", "Noted")
# Auto mode (v1.1.8+) — auto-captures turns without manual add_turn()
sm = mod.SessionManager(auto_record=True)
sm.start_conversation()
# ... conversations are recorded automatically ...
sm.stop() # flushes buffer and disables auto_record
# Heartbeat (v1.1.9+) — called externally every ~5 min via Hermes cron
# sm.heartbeat() # flushes buffer + closes idle sessions (>30 min)
# Explicit db_path (recommended)
sm = mod.SessionManager(db_path="./memory.db", auto_record=True)
# Environment variable override:
# export MARK_MEMORY_DB=/path/to/memory.db
What It Solves
AI forgets everything each conversation. MAMP makes memory persistent, searchable, and structured — without any external service, API key, or dependency beyond SQLite.
Security Notes
Default behavior — local directory only:
- DB file written to
./mark_memory.dbin the current working directory - No system directories are touched
- No log files, audit files, or hidden state files are written
- No network access, no external services
Pass an explicit path to isolate data:
sm = mod.SessionManager(db_path="/your/specific/path/memory.db")
Environment variable override:
export MARK_MEMORY_DB=/your/specific/path/memory.db
This takes precedence over both the default and any db_path argument.
Permissions awareness:
- The DB file contains your conversation history in plaintext
- Ensure the directory has appropriate access controls
- If multiple agents run on the same host with the same path, they share memory — use different paths per agent to isolate
No credentials stored:
MAMP uses no API keys, tokens, or secrets. It is a pure local SQLite store.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install mamp-memory - 安装完成后,直接呼叫该 Skill 的名称或使用
/mamp-memory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
MAMP 是什么?
Mark AI Memory Protocol — persistent, searchable session memory for AI agents. SQLite-only, zero external dependencies. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 108 次。
如何安装 MAMP?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install mamp-memory」即可一键安装,无需额外配置。
MAMP 是免费的吗?
是的,MAMP 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
MAMP 支持哪些平台?
MAMP 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 MAMP?
由 rokkiezeng(@rokkiezeng)开发并维护,当前版本 v1.2.1。