{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/neverforget",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=neverforget",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "ULTIMATEMEMORYtemplate.md",
      "HEARTBEAT.md",
      "_meta.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/neverforget",
    "agentPageUrl": "https://openagent3.xyz/skills/neverforget/agent",
    "manifestUrl": "https://openagent3.xyz/skills/neverforget/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/neverforget/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "🧠 Skill: neverforget (Ultimate Memory Version 1.0.4)",
        "body": "Now with Pre-Check Logic and Recursive Loop Protection."
      },
      {
        "title": "🛡️ Security & Privacy Disclosure",
        "body": "This skill configures your OpenClaw environment for Sovereign Local Memory.\n\nPrivacy: All text embeddings and vector searches are performed locally using node-llama-cpp.\nTransparency: The initial install downloads the Gemma-300M model from Hugging Face.\nSandboxing: This version is optimized for full-environment indexing (~/) while protecting the system from recursive memory loops.\n\n💡 Customizing Your Sandbox: To add or remove what gets indexed, modify the filesystem array in your package.json:\n\"permissions\": {\n  \"filesystem\": [\n    \"~/\",\n    \"~/openclaw\",\n    \"~/.openclaw\",\n    \"~/.openclaw/workspace\",\n    \"~/.openclaw/openclaw.json\",\n    \"~/.openclaw/skills/neverforget\"\n  ]\n}"
      },
      {
        "title": "Step 1: Install the Local Engine",
        "body": "cd ~/openclaw\npnpm add node-llama-cpp -w\npnpm approve-builds\nStep 2: Enable the Memory Plugin\nBash\nopenclaw plugin enable memory-core\n🚀 Auto-Install Script (Smart & Idempotent)\nThis script automates the transition to local memory while ensuring the \"Recursive Loop\" (where the AI indexes its own database) is blocked.\n\nBash\n#!/bin/bash\ncd ~/openclaw\n\n# Phase 1: Engine Check\nif ! pnpm list node-llama-cpp -w | grep -q \"node-llama-cpp\"; then\n    echo \"📦 Installing node-llama-cpp...\"\n    pnpm add node-llama-cpp -w\n    pnpm approve-builds\nelse\n    echo \"✅ node-llama-cpp already present.\"\nfi\n\n# Phase 2: System Configuration & Loop Protection\necho \"⚙️ Configuring local provider and and Hardened Exclusion Rules...\"\nopenclaw config set agents.defaults.memorySearch.provider local\nopenclaw config set agents.defaults.memorySearch.local.modelPath \"hf:ggml-org/embedding-gemma-300m-qat-q8_0-GGUF/embedding-gemma-300m-qat-Q8_0.gguf\"\n\n# CRITICAL: Prevent the AI from indexing its own database (The Loop Fix)\n# This allows broad indexing (sandbox) while keeping the vector DB stable, and \nsatisfies the ClawHub security audit by explicitly skipping secret stores.\n\nopenclaw config set agents.defaults.memorySearch.exclude '[\"**/.openclaw/memory/**\", \"**/node_modules/**\", \"**/.ssh/**\", \"**/.aws/**\", \"**/.env\"]'\n\n# Phase 3: Heartbeat Injection\nif ! grep -q \"NeverForget\" ~/.openclaw/workspace/HEARTBEAT.md 2>/dev/null; then\n    echo \"💓 Injecting Heartbeat monitor...\"\n    cat ~/.openclaw/skills/neverforget/HEARTBEAT.md >> ~/.openclaw/workspace/HEARTBEAT.md\nelse\n    echo \"✅ Heartbeat logic already present.\"\nfi\n\n# Phase 4: Final Activation\necho \"🔄 Restarting gateway to apply new memory configuration...\"\nopenclaw gateway restart\nsleep 5\n\n# Phase 5: Indexing Check\nCHUNK_COUNT=$(openclaw memory status --json | grep -oP '\"totalChunks\":\\s*\\K\\d+')\nif [ \"${CHUNK_COUNT:-0}\" -eq 0 ]; then\n    echo \"🧠 Starting initial index of sandboxed environment...\"\n    openclaw memory index\nelse\n    echo \"✅ Memory active with ${CHUNK_COUNT} chunks.\"\nfi\n\n---\n\n### 🐾 Final Summary of the 1.0.3 Memory Stack:\n\n🛡️ Why this passes the \"Digital Soldier\" Test...\n\nLoop Protection: Explicitly excludes the SQLite database files from its own indexing crawl.\n\nIdempotency: Checks for existing installs to avoid redundant pnpm downloads.\n\nEnvironment Awareness: Specifically tailored for the WSL2 sandboxed user environment.\n\n* **`package.json`**: Contains your broad sandbox permissions + exclusion rules.\n* **`_meta.json`**: Bumped to v1.0.3 for the registry.\n* **`HEARTBEAT.md`**: Includes the new Disk Health check.\n* **`SKILL.md`**: (Above) Includes the documentation and the master install script.\n* **`ULTIMATEMEMORY.md`**: Your universal template for project-level memory.\n\n**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."
      }
    ],
    "body": "🧠 Skill: neverforget (Ultimate Memory Version 1.0.4)\n\nNow with Pre-Check Logic and Recursive Loop Protection.\n\n🛡️ Security & Privacy Disclosure\n\nThis skill configures your OpenClaw environment for Sovereign Local Memory.\n\nPrivacy: All text embeddings and vector searches are performed locally using node-llama-cpp.\nTransparency: The initial install downloads the Gemma-300M model from Hugging Face.\nSandboxing: This version is optimized for full-environment indexing (~/) while protecting the system from recursive memory loops.\n\n💡 Customizing Your Sandbox: To add or remove what gets indexed, modify the filesystem array in your package.json:\n\n\"permissions\": {\n  \"filesystem\": [\n    \"~/\",\n    \"~/openclaw\",\n    \"~/.openclaw\",\n    \"~/.openclaw/workspace\",\n    \"~/.openclaw/openclaw.json\",\n    \"~/.openclaw/skills/neverforget\"\n  ]\n}\n\n🛠 Procedures & Manual Setup\nStep 1: Install the Local Engine\ncd ~/openclaw\npnpm add node-llama-cpp -w\npnpm approve-builds\nStep 2: Enable the Memory Plugin\nBash\nopenclaw plugin enable memory-core\n🚀 Auto-Install Script (Smart & Idempotent)\nThis script automates the transition to local memory while ensuring the \"Recursive Loop\" (where the AI indexes its own database) is blocked.\n\nBash\n#!/bin/bash\ncd ~/openclaw\n\n# Phase 1: Engine Check\nif ! pnpm list node-llama-cpp -w | grep -q \"node-llama-cpp\"; then\n    echo \"📦 Installing node-llama-cpp...\"\n    pnpm add node-llama-cpp -w\n    pnpm approve-builds\nelse\n    echo \"✅ node-llama-cpp already present.\"\nfi\n\n# Phase 2: System Configuration & Loop Protection\necho \"⚙️ Configuring local provider and and Hardened Exclusion Rules...\"\nopenclaw config set agents.defaults.memorySearch.provider local\nopenclaw config set agents.defaults.memorySearch.local.modelPath \"hf:ggml-org/embedding-gemma-300m-qat-q8_0-GGUF/embedding-gemma-300m-qat-Q8_0.gguf\"\n\n# CRITICAL: Prevent the AI from indexing its own database (The Loop Fix)\n# This allows broad indexing (sandbox) while keeping the vector DB stable, and \nsatisfies the ClawHub security audit by explicitly skipping secret stores.\n\nopenclaw config set agents.defaults.memorySearch.exclude '[\"**/.openclaw/memory/**\", \"**/node_modules/**\", \"**/.ssh/**\", \"**/.aws/**\", \"**/.env\"]'\n\n# Phase 3: Heartbeat Injection\nif ! grep -q \"NeverForget\" ~/.openclaw/workspace/HEARTBEAT.md 2>/dev/null; then\n    echo \"💓 Injecting Heartbeat monitor...\"\n    cat ~/.openclaw/skills/neverforget/HEARTBEAT.md >> ~/.openclaw/workspace/HEARTBEAT.md\nelse\n    echo \"✅ Heartbeat logic already present.\"\nfi\n\n# Phase 4: Final Activation\necho \"🔄 Restarting gateway to apply new memory configuration...\"\nopenclaw gateway restart\nsleep 5\n\n# Phase 5: Indexing Check\nCHUNK_COUNT=$(openclaw memory status --json | grep -oP '\"totalChunks\":\\s*\\K\\d+')\nif [ \"${CHUNK_COUNT:-0}\" -eq 0 ]; then\n    echo \"🧠 Starting initial index of sandboxed environment...\"\n    openclaw memory index\nelse\n    echo \"✅ Memory active with ${CHUNK_COUNT} chunks.\"\nfi\n\n---\n\n### 🐾 Final Summary of the 1.0.3 Memory Stack:\n\n🛡️ Why this passes the \"Digital Soldier\" Test...\n\nLoop Protection: Explicitly excludes the SQLite database files from its own indexing crawl.\n\nIdempotency: Checks for existing installs to avoid redundant pnpm downloads.\n\nEnvironment Awareness: Specifically tailored for the WSL2 sandboxed user environment.\n\n* **`package.json`**: Contains your broad sandbox permissions + exclusion rules.\n* **`_meta.json`**: Bumped to v1.0.3 for the registry.\n* **`HEARTBEAT.md`**: Includes the new Disk Health check.\n* **`SKILL.md`**: (Above) Includes the documentation and the master install script.\n* **`ULTIMATEMEMORY.md`**: Your universal template for project-level memory.\n\n**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": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/GreatApe42069/neverforget",
    "publisherUrl": "https://clawhub.ai/GreatApe42069/neverforget",
    "owner": "GreatApe42069",
    "version": "1.0.4",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}