An intelligent, modular memory system for AI agents that integrates semantic search, multi-provider embeddings, and Flomo notes.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install memory-core-ng
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install memory-core-ng using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
Memory Core is a sophisticated, modular memory engine designed to provide AI agents with a long-term, searchable knowledge base. By leveraging the framework of Openclaw Skills, this tool enables developers to implement semantic search capabilities using a variety of embedding and reranker providers, including OpenAI, Edgefn, or local models. It serves as a bridge between raw information and actionable intelligence, ensuring that agents can recall relevant context across sessions.
The system is built with flexibility in mind, allowing for seamless integration into existing workflows. One of its standout features is the native support for Flomo notes, which allows users to transform their personal observations and captures into a structured, queryable resource that any agent utilizing Openclaw Skills can access and understand.
To integrate this into your environment, modify your Openclaw Skills configuration file located at ~/.openclaw/openclaw.json:
{
"skills": {
"memory-core": {
"enabled": true,
"config": { "apiKey": "sk-your-key" }
"
}
}
}
For programmatic usage in your own scripts:
const { quickStart } = require('./index');
const memoryCore = await quickStart({ apiKey: 'your-key' });
const result = await memoryCore.search('your query content');
| Component | Description |
|---|---|
| Embeddings | Support for Edgefn, OpenAI, and local vector generation models. |
| Reranker | An intelligent scoring layer used to optimize the relevance of search results. |
| Flomo Integration | Dedicated logic for parsing and importing Flomo .zip or .json backup files. |
| Commands | CLI-based interface for operations like search, add, stats, and import. |
| Storage | Organized modular architecture with clear separation between core logic, config, and tests. |
Loading
A specialized design agent that automates frontend UI/UX workflows, from initial repo analysis to component extraction.

An AI-powered utility for generating highly customizable QR codes and barcodes for various data types including URLs and WiFi configurations.

A high-performance AI agent skill for scanning local directories and auditing file metadata using absolute paths.

A comprehensive tool for real-time Berlin public transport routing and departure information using the BVG API.

A Retrieval-Augmented Generation (RAG) based intelligence system providing semantic search and memory optimization for Openclaw Skills.

A sophisticated writing editor that identifies and removes common AI-generated signatures to create natural, human-sounding text.








































