{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-memory-store",
    "name": "Agent Memory Store",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kgnvsk/agent-memory-store",
    "canonicalUrl": "https://clawhub.ai/kgnvsk/agent-memory-store",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/agent-memory-store",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-store",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/memory_store.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. 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",
      "slug": "agent-memory-store",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T12:12:27.346Z",
      "expiresAt": "2026-05-06T12:12:27.346Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-store",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-memory-store",
        "contentDisposition": "attachment; filename=\"agent-memory-store-1.2.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-memory-store"
      },
      "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/agent-memory-store"
    },
    "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/agent-memory-store",
    "agentPageUrl": "https://openagent3.xyz/skills/agent-memory-store/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-memory-store/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-memory-store/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": "Agent Memory Store",
        "body": "Cross-agent semantic memory with TTL decay. SQLite-backed — data survives restarts."
      },
      {
        "title": "Start",
        "body": "python3 scripts/memory_store.py\n# Runs on port 8768, DB: /root/.openclaw/workspace/data/agent_memory.db"
      },
      {
        "title": "Quick Start",
        "body": "# Store a memory\ncurl -X POST http://localhost:8768/memories \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"owner\":\"my-agent\",\"content\":\"user prefers SOL payments\",\"ttl_seconds\":86400,\"public\":false}'\n\n# Search memories\ncurl \"http://localhost:8768/memories?q=payment+preferences&agent=my-agent\"\n\n# List all (with agent filter)\ncurl \"http://localhost:8768/memories?agent=my-agent&limit=20\""
      },
      {
        "title": "Endpoints",
        "body": "MethodPathDescriptionGET/healthstatus + memory countPOST/memoriesstore memory {owner, content, tags?, ttl_seconds?, public?}GET/memories?q=query&agent=X&limit=10semantic search (Jaccard)GET/memories/:idget by IDPOST/memories/:id/deletedelete"
      },
      {
        "title": "v1.1.0",
        "body": "SQLite persistence (data survives restarts)\nThread-safe writes\nDB stored at /root/.openclaw/workspace/data/agent_memory.db"
      },
      {
        "title": "v1.0.0",
        "body": "Initial release: in-memory store, TTL, cross-agent sharing, Jaccard search"
      },
      {
        "title": "Install",
        "body": "clawhub install agent-memory-store"
      }
    ],
    "body": "Agent Memory Store\n\nCross-agent semantic memory with TTL decay. SQLite-backed — data survives restarts.\n\nStart\npython3 scripts/memory_store.py\n# Runs on port 8768, DB: /root/.openclaw/workspace/data/agent_memory.db\n\nQuick Start\n# Store a memory\ncurl -X POST http://localhost:8768/memories \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"owner\":\"my-agent\",\"content\":\"user prefers SOL payments\",\"ttl_seconds\":86400,\"public\":false}'\n\n# Search memories\ncurl \"http://localhost:8768/memories?q=payment+preferences&agent=my-agent\"\n\n# List all (with agent filter)\ncurl \"http://localhost:8768/memories?agent=my-agent&limit=20\"\n\nEndpoints\nMethod\tPath\tDescription\nGET\t/health\tstatus + memory count\nPOST\t/memories\tstore memory {owner, content, tags?, ttl_seconds?, public?}\nGET\t/memories?q=query&agent=X&limit=10\tsemantic search (Jaccard)\nGET\t/memories/:id\tget by ID\nPOST\t/memories/:id/delete\tdelete\nChangelog\nv1.1.0\nSQLite persistence (data survives restarts)\nThread-safe writes\nDB stored at /root/.openclaw/workspace/data/agent_memory.db\nv1.0.0\nInitial release: in-memory store, TTL, cross-agent sharing, Jaccard search\nInstall\nclawhub install agent-memory-store"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kgnvsk/agent-memory-store",
    "publisherUrl": "https://clawhub.ai/kgnvsk/agent-memory-store",
    "owner": "kgnvsk",
    "version": "1.2.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-memory-store",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-memory-store",
    "agentUrl": "https://openagent3.xyz/skills/agent-memory-store/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-memory-store/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-memory-store/agent.md"
  }
}