TopRank Skills

Home / Claw Skills / Search / Fast Unified Memory
Official OpenClaw rules 36%

Fast Unified Memory

Skill: Fast Unified Memory

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Fast Unified Memory 技能。 若已安装,则直接安装 Fast Unified Memory 技能。

Overview

Skill Key
broedkrummen/fast-unified-memory
Author
broedkrummen
Source Repo
openclaw/skills
Version
-
Source Path
skills/broedkrummen/fast-unified-memory
Latest Commit SHA
e4cafe76cb7b96cf7263c4350b503ac295206972

Extracted Content

SKILL.md excerpt

# Skill: Fast Unified Memory

A high-performance unified memory system that integrates OpenClaw memory with semantic memory storage using Ollama's nomic-embed-text model for ultra-fast embeddings.

## Overview

This skill provides a unified memory layer that combines:
- **OpenClaw Memory**: Standard file-based memory storage
- **Semantic Memory**: Vector-based memory using Ollama embeddings

## Features

- ⚡ **Ultra-fast**: ~130ms for combined search (embedding ~40ms + search ~90ms)
- 🔒 **Private**: All processing done locally via Ollama
- 💰 **Free**: No API costs - uses local Ollama instance
- 🧠 **Semantic**: Uses nomic-embed-text for intelligent similarity matching

## Requirements

- [Ollama](https://ollama.ai) installed and running
- `nomic-embed-text` model pulled: `ollama pull nomic-embed-text`

## Installation

```bash
# Install Ollama first
curl -fsSL https://ollama.ai/install.sh | sh

# Pull the embedding model
ollama pull nomic-embed-text

# Start Ollama
ollama serve
```

## Usage

### Commands

```bash
# Search both memory systems
node fast-unified-memory.js search "your query"

# Add a memory
node fast-unified-memory.js add "User prefers concise responses"

# List all memories
node fast-unified-memory.js list

# Show system stats
node fast-unified-memory.js stats
```

## Architecture

```
┌─────────────────────────────────────────────┐
│           FAST UNIFIED MEMORY                │
│                                             │
│  ┌─────────────┐    ┌─────────────┐        │
│  │   OpenClaw  │    │   Semantic  │        │
│  │   Memory    │    │   Memory    │        │
│  │ (files)     │    │  (vectors) │        │
│  └─────────────┘    └─────────────┘        │
│           ↓                  ↓              │
│    [Keyword Match]   [Cosine Similarity]   │
│                                             │
│        Unified Results (ranked)             │
└─────────────────────────────────────────────┘
```

## Performance

| Metric | Value |
|--------|------...

Related Claw Skills