Install
openclaw skills install memory-core-ngClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
模块化智能记忆系统,支持多平台 embeddings、智能重排序和 Flomo 笔记导入,实现高效语义搜索与管理。
openclaw skills install memory-core-ng基于模块化架构的智能记忆系统,支持多平台 embeddings/reranker 和 Flomo 笔记集成。
const { quickStart } = require('./index');
const memoryCore = await quickStart({ apiKey: 'your-key' });
const result = await memoryCore.search('查询内容');
在 ~/.openclaw/openclaw.json 中添加:
"skills": {
"memory-core": {
"enabled": true,
"config": { "apiKey": "sk-your-key" }
}
}
memory-core/
├── SKILL.md # 技能文档
├── package.json # 配置
├── index.js # 主入口
├── entry.js # OpenClaw 集成入口
├── config/ # 配置
│ └── openclaw.json # OpenClaw 配置模板
├── src/ # 核心代码
├── examples/ # 示例
└── tests/ # 测试