# Send Neverforget to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "neverforget",
    "name": "Neverforget",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/GreatApe42069/neverforget",
    "canonicalUrl": "https://clawhub.ai/GreatApe42069/neverforget",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/neverforget",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=neverforget",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "ULTIMATEMEMORYtemplate.md",
      "HEARTBEAT.md",
      "_meta.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "neverforget",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T18:11:02.767Z",
      "expiresAt": "2026-05-09T18:11:02.767Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=neverforget",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=neverforget",
        "contentDisposition": "attachment; filename=\"neverforget-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "neverforget"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/neverforget"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/neverforget",
    "downloadUrl": "https://openagent3.xyz/downloads/neverforget",
    "agentUrl": "https://openagent3.xyz/skills/neverforget/agent",
    "manifestUrl": "https://openagent3.xyz/skills/neverforget/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/neverforget/agent.md"
  }
}
```
## Documentation

### 🧠 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:
"permissions": {
  "filesystem": [
    "~/",
    "~/openclaw",
    "~/.openclaw",
    "~/.openclaw/workspace",
    "~/.openclaw/openclaw.json",
    "~/.openclaw/skills/neverforget"
  ]
}

### Step 1: Install the Local Engine

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: Prevent the AI from indexing its own database (The Loop Fix)
# This allows broad indexing (sandbox) while keeping the vector DB stable, and 
satisfies the ClawHub security audit by explicitly skipping secret stores.

openclaw config set agents.defaults.memorySearch.exclude '["**/.openclaw/memory/**", "**/node_modules/**", "**/.ssh/**", "**/.aws/**", "**/.env"]'

# Phase 3: Heartbeat Injection
if ! grep -q "NeverForget" ~/.openclaw/workspace/HEARTBEAT.md 2>/dev/null; then
    echo "💓 Injecting Heartbeat monitor..."
    cat ~/.openclaw/skills/neverforget/HEARTBEAT.md >> ~/.openclaw/workspace/HEARTBEAT.md
else
    echo "✅ Heartbeat logic already present."
fi

# Phase 4: Final Activation
echo "🔄 Restarting gateway to apply new memory configuration..."
openclaw gateway restart
sleep 5

# Phase 5: Indexing Check
CHUNK_COUNT=$(openclaw memory status --json | grep -oP '"totalChunks":\\s*\\K\\d+')
if [ "${CHUNK_COUNT:-0}" -eq 0 ]; then
    echo "🧠 Starting initial index of sandboxed environment..."
    openclaw memory index
else
    echo "✅ Memory active with ${CHUNK_COUNT} chunks."
fi

---

### 🐾 Final Summary of the 1.0.3 Memory Stack:

🛡️ Why this passes the "Digital Soldier" Test...

Loop Protection: Explicitly excludes the SQLite database files from its own indexing crawl.

Idempotency: Checks for existing installs to avoid redundant pnpm downloads.

Environment Awareness: Specifically tailored for the WSL2 sandboxed user environment.

* **\`package.json\`**: Contains your broad sandbox permissions + exclusion rules.
* **\`_meta.json\`**: Bumped to v1.0.3 for the registry.
* **\`HEARTBEAT.md\`**: Includes the new Disk Health check.
* **\`SKILL.md\`**: (Above) Includes the documentation and the master install script.
* **\`ULTIMATEMEMORY.md\`**: Your universal template for project-level memory.

**Everything is locked in.** Your Degen Digital Soldier is ready for deployment. Rest easy... you now have a world-class local intelligence stack for your agent.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: GreatApe42069
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T18:11:02.767Z
- Expires at: 2026-05-09T18:11:02.767Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/neverforget)
- [Send to Agent page](https://openagent3.xyz/skills/neverforget/agent)
- [JSON manifest](https://openagent3.xyz/skills/neverforget/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/neverforget/agent.md)
- [Download page](https://openagent3.xyz/downloads/neverforget)