{
  "schemaVersion": "1.0",
  "item": {
    "slug": "memory-pro",
    "name": "memory-pro",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/royhk920/memory-pro",
    "canonicalUrl": "https://clawhub.ai/royhk920/memory-pro",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/memory-pro",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=memory-pro",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "v2/benchmark.py",
      "v2/build_index.py",
      "v2/eval_queries.json",
      "v2/main.py"
    ],
    "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/memory-pro"
    },
    "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/memory-pro",
    "agentPageUrl": "https://openagent3.xyz/skills/memory-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memory-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memory-pro/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Memory Pro (v2)",
        "body": "This skill provides semantic search over your memory files using a local vector database."
      },
      {
        "title": "Architecture (v2)",
        "body": "Service: Runs as a systemd user service (memory-pro.service).\nPort: 8001 (hardcoded for stability).\nEngine: FAISS + Sentence-Transformers (all-MiniLM-L6-v2).\nData Source:\n\nDaily logs: ${OPENCLAW_WORKSPACE}/memory/*.md\nCore files: MEMORY.md, SOUL.md, STATUS.md, AGENTS.md, USER.md (from workspace root).\n\n\nIndex: Stored in ${OPENCLAW_WORKSPACE}/skills/memory-pro/v2/memory.index."
      },
      {
        "title": "1. Semantic Search (Recommended)",
        "body": "Use the python script to query the running service.\n\n# Basic search\npython3 scripts/search_semantic.py \"What did I do yesterday?\"\n\n# JSON output\npython3 scripts/search_semantic.py \"project updates\" --json"
      },
      {
        "title": "2. Manual Index Rebuild",
        "body": "The service automatically rebuilds the index on restart. To force an update:\n\nsystemctl --user restart memory-pro.service\n\nNote: Service restart takes ~15-20 seconds to rebuild index and load models. The client script has auto-retry logic."
      },
      {
        "title": "3. Service Management",
        "body": "# Check status\nsystemctl --user status memory-pro.service\n\n# Stop service\nsystemctl --user stop memory-pro.service\n\n# View logs\njournalctl --user -u memory-pro.service -f"
      },
      {
        "title": "\"Connection failed\"",
        "body": "The service might be stopped or restarting.\nCheck status: systemctl --user status memory-pro.service.\nIf restarting, wait 15 seconds. The client script retries automatically for up to 20s."
      },
      {
        "title": "\"Index size mismatch\"",
        "body": "This means memory.index and sentences.txt are out of sync.\nFix: Restart the service. The startup script start.sh automatically runs build_index.py to fix this consistency issue before starting the API."
      },
      {
        "title": "\"Address already in use\"",
        "body": "Port 8001 is taken by a zombie process.\nFix: kill $(lsof -t -i:8001) then restart service."
      }
    ],
    "body": "Memory Pro (v2)\n\nThis skill provides semantic search over your memory files using a local vector database.\n\nArchitecture (v2)\nService: Runs as a systemd user service (memory-pro.service).\nPort: 8001 (hardcoded for stability).\nEngine: FAISS + Sentence-Transformers (all-MiniLM-L6-v2).\nData Source:\nDaily logs: ${OPENCLAW_WORKSPACE}/memory/*.md\nCore files: MEMORY.md, SOUL.md, STATUS.md, AGENTS.md, USER.md (from workspace root).\nIndex: Stored in ${OPENCLAW_WORKSPACE}/skills/memory-pro/v2/memory.index.\nUsage\n1. Semantic Search (Recommended)\n\nUse the python script to query the running service.\n\n# Basic search\npython3 scripts/search_semantic.py \"What did I do yesterday?\"\n\n# JSON output\npython3 scripts/search_semantic.py \"project updates\" --json\n\n2. Manual Index Rebuild\n\nThe service automatically rebuilds the index on restart. To force an update:\n\nsystemctl --user restart memory-pro.service\n\n\nNote: Service restart takes ~15-20 seconds to rebuild index and load models. The client script has auto-retry logic.\n\n3. Service Management\n# Check status\nsystemctl --user status memory-pro.service\n\n# Stop service\nsystemctl --user stop memory-pro.service\n\n# View logs\njournalctl --user -u memory-pro.service -f\n\nTroubleshooting\n\"Connection failed\"\nThe service might be stopped or restarting.\nCheck status: systemctl --user status memory-pro.service.\nIf restarting, wait 15 seconds. The client script retries automatically for up to 20s.\n\"Index size mismatch\"\nThis means memory.index and sentences.txt are out of sync.\nFix: Restart the service. The startup script start.sh automatically runs build_index.py to fix this consistency issue before starting the API.\n\"Address already in use\"\nPort 8001 is taken by a zombie process.\nFix: kill $(lsof -t -i:8001) then restart service."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/royhk920/memory-pro",
    "publisherUrl": "https://clawhub.ai/royhk920/memory-pro",
    "owner": "royhk920",
    "version": "2.5.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/memory-pro",
    "downloadUrl": "https://openagent3.xyz/downloads/memory-pro",
    "agentUrl": "https://openagent3.xyz/skills/memory-pro/agent",
    "manifestUrl": "https://openagent3.xyz/skills/memory-pro/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/memory-pro/agent.md"
  }
}