Openakita add-memory
Record important information to long-term memory for learning user preferences, successful patterns, and error lessons. When you need to remember user preferences, save successful patterns, or record lessons from errors.
install
source · Clone the upstream repo
git clone https://github.com/openakita/openakita
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openakita/openakita "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/system/add-memory" ~/.claude/skills/openakita-openakita-add-memory && rm -rf "$T"
manifest:
skills/system/add-memory/SKILL.mdsource content
Add Memory
记录重要信息到长期记忆。
Parameters
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| content | string | 是 | 要记住的内容 |
| type | string | 是 | 记忆类型(见下方列表) |
| importance | number | 否 | 重要性(0-1),默认 0.5 |
Memory Types
: 事实信息fact
: 用户偏好preference
: 技能知识skill
: 错误教训error
: 规则约定rule
Importance Levels
- 0.8+: 永久记忆(重要偏好、关键规则)
- 0.6-0.8: 长期记忆(一般偏好、常用模式)
- 0.6-: 短期记忆(临时信息)
Examples
记录用户偏好:
{ "content": "用户喜欢简洁的代码风格", "type": "preference", "importance": 0.8 }
记录错误教训:
{ "content": "在 Windows 上使用 / 而不是 \\ 作为路径分隔符", "type": "error", "importance": 0.7 }
Related Skills
: 搜索相关记忆search-memory
: 查看记忆统计get-memory-stats