Install
openclaw skills install evomindAgent进化操作系统 — 五层记忆×自我进化引擎。可直接安装运行,非纯文档。
openclaw skills install evomind不是文档,是代码。 pip install 后直接 from evomind import MemoryCore。
pip install -r requirements.txt # 零外部依赖,仅标准库
# CLI 演示
python scripts/memory_core.py health
python scripts/memory_core.py remember "用户偏好深色模式"
python scripts/memory_core.py recall "深色"
# Python API
python -c "
from scripts.memory_core import MemoryCore
mem = MemoryCore()
mem.remember('Python version: 3.11', priority=5, tags=['env'])
mem.skill_save('web-scraper', open('SKILL.md').read(), description='网页抓取')
mem.curate()
print(mem.stats())
"
| 层 | 功能 | 方法 |
|---|---|---|
| L1 持久记忆 | 关键事实自动存档,≤20KB | remember(), forget(), recall_l1() |
| L2 技能层 | 成功方案永久固化 | skill_save(), skill_load(), skill_find() |
| L3 缓存层 | 会话临时数据,TTL过期 | cache_set(), cache_get(), cache_clear() |
| L4 策展层 | 每日自动审查优化 | curate(), curator_log() |
| L5 索引层 | FTS5全文搜索,跨层召回 | recall(), stats() |
l1_archiveskill_save() + skill_load() 形成改进循环来自 Hermes Agent 生产环境实战验证(2026年6月起),非理论设计。已在真实Agent系统中运行五层全架构。
MIT — 免费使用、修改、分发。