Bounded Memory
/install bounded-memory
Bounded Memory
Gives your OpenClaw AI agent a perfect memory — it can recall anything you've ever discussed, even from months ago.
What It Does
Without this skill: each OpenClaw session starts fresh. The AI forgets everything.
With this skill: ask things like:
- "Did we discuss X before?"
- "What did we decide about Y?"
- "Find that conversation from last month"
Privacy Design
| What runs | How |
|---|---|
| Search indexing | ✅ 100% offline — SQLite only |
| Search execution | ✅ 100% offline — no network calls |
| LLM summarization | ⚠️ Opt-in only — use --llm flag to enable |
No external API calls by default. The --llm flag (disabled by default) sends snippets to your configured LLM for summarization — only when you explicitly ask for it.
Quick Start
# Index your conversations (first time)
python3 skills/session-search/scripts/index-sessions.py --agent main
# Search (fully offline)
python3 skills/session-search/scripts/search-sessions.py "what did we decide about the logo design"
# Search with AI summary (opt-in)
python3 skills/session-search/scripts/search-sessions.py "question" --llm
What It Solves
| Problem | Without | With Bounded Memory |
|---|---|---|
| "I asked this before but can't remember" | AI has no idea | Instant recall |
| "What did we decide in that meeting?" | Forgot | Searches all sessions |
| "Did I mention this before?" | No way to know | Searches everything |
Example
You: "Search our conversations about the robot project"
→ Found 3 discussions:
1. [Last week] We discussed the design direction...
2. [2 weeks ago] You asked about pricing...
3. [Last month] The AI suggested adding...
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install bounded-memory - 安装完成后,直接呼叫该 Skill 的名称或使用
/bounded-memory触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Bounded Memory 是什么?
Provides fast full-text search of OpenClaw session histories with optional LLM summarization for recalling past conversations and decisions. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 114 次。
如何安装 Bounded Memory?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install bounded-memory」即可一键安装,无需额外配置。
Bounded Memory 是免费的吗?
是的,Bounded Memory 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Bounded Memory 支持哪些平台?
Bounded Memory 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Bounded Memory?
由 canmaxfire(@canmaxfire)开发并维护,当前版本 v1.1.1。