Install
openclaw skills install @terrycarter1985/memory-assistant-demo记忆助手 - 帮助用户管理、搜索和组织记忆文件。支持创建记忆条目、按日期或关键词搜索记忆、以及长期记忆的个性化更新。
openclaw skills install @terrycarter1985/memory-assistant-demo这是一个用于帮助用户管理和搜索记忆文件的技能。
创建新的记忆记录到 daily note 中:
# 基本创建
echo "今天完成了技能创建" >> memory/$(date +%Y-%m-%d).md
使用关键词搜索记忆:
# 搜索所有记忆文件
rg "关键词" memory/*.md
# 按日期搜索
head -50 memory/2026-07-15.md
将重要信息从 daily notes 合并到 MEMORY.md:
# 查看最近的 daily notes
ls -la memory/*.md
# 手动编辑 MEMORY.md
nano MEMORY.md