TopRank Skills

Home / Claw Skills / Autres / neverforget
Official OpenClaw rules 15%

neverforget

Automates Sovereign Local Vector Memory and Gemma-300M Embeddings. Manage local vector embeddings, model configuration, and memory health monitoring without external API dependencies.

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

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

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

Overview

Skill Key
greatape42069/neverforget
Author
greatape42069
Source Repo
openclaw/skills
Version
1.0.4
Source Path
skills/greatape42069/neverforget
Latest Commit SHA
6903c7fcd4d02ec470bd58a195eaa0ecd48bf640

Extracted Content

SKILL.md excerpt

# 🧠 Skill: neverforget (Ultimate Memory Version 1.0.4)

**Now with Pre-Check Logic and Recursive Loop Protection.**

## 🛡️ Security & Privacy Disclosure
This skill configures your OpenClaw environment for **Sovereign Local Memory**. 
- **Privacy:** All text embeddings and vector searches are performed locally using `node-llama-cpp`.
- **Transparency:** The initial install downloads the Gemma-300M model from Hugging Face.
- **Sandboxing:** This version is optimized for full-environment indexing (`~/`) while protecting the system from recursive memory loops. 

> **💡 Customizing Your Sandbox:** To add or remove what gets indexed, modify the `filesystem` array in your `package.json`:
> ```json
> "permissions": {
>   "filesystem": [
>     "~/",
>     "~/openclaw",
>     "~/.openclaw",
>     "~/.openclaw/workspace",
>     "~/.openclaw/openclaw.json",
>     "~/.openclaw/skills/neverforget"
>   ]
> }
> ```

---

## 🛠 Procedures & Manual Setup

### Step 1: Install the Local Engine
```bash
cd ~/openclaw
pnpm add node-llama-cpp -w
pnpm approve-builds
Step 2: Enable the Memory Plugin
Bash
openclaw plugin enable memory-core
🚀 Auto-Install Script (Smart & Idempotent)
This script automates the transition to local memory while ensuring the "Recursive Loop" (where the AI indexes its own database) is blocked.

Bash
#!/bin/bash
cd ~/openclaw

# Phase 1: Engine Check
if ! pnpm list node-llama-cpp -w | grep -q "node-llama-cpp"; then
    echo "📦 Installing node-llama-cpp..."
    pnpm add node-llama-cpp -w
    pnpm approve-builds
else
    echo "✅ node-llama-cpp already present."
fi

# Phase 2: System Configuration & Loop Protection
echo "⚙️ Configuring local provider and and Hardened Exclusion Rules..."
openclaw config set agents.defaults.memorySearch.provider local
openclaw config set agents.defaults.memorySearch.local.modelPath "hf:ggml-org/embedding-gemma-300m-qat-q8_0-GGUF/embedding-gemma-300m-qat-Q8_0.gguf"

# CRITICAL: Pr...

Related Claw Skills