{
  "schemaVersion": "1.0",
  "item": {
    "slug": "viking-memory",
    "name": "Viking Memory",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/forvendettaw/viking-memory",
    "canonicalUrl": "https://clawhub.ai/forvendettaw/viking-memory",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/viking-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=viking-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "index.js"
    ],
    "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/viking-memory"
    },
    "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/viking-memory",
    "agentPageUrl": "https://openagent3.xyz/skills/viking-memory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/viking-memory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/viking-memory/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": "Viking Memory",
        "body": "基于 OpenViking 的向量化记忆系统，提供语义搜索能力。"
      },
      {
        "title": "功能",
        "body": "语义搜索 - 用自然语言描述搜索相关记忆\n添加记忆 - 将重要信息存入长期记忆\n读取内容 - 获取记忆的详细内容"
      },
      {
        "title": "API 端点",
        "body": "Base URL: http://127.0.0.1:18790\n语义搜索: POST /api/v1/search/find\n添加资源: POST /api/v1/resources\n读取内容: POST /api/v1/content/read"
      },
      {
        "title": "使用场景",
        "body": "用户提到之前讨论过的话题 → 搜索相关记忆\n用户询问之前保存的信息 → 召回记忆\n对话中识别到重要信息 → 自动保存"
      },
      {
        "title": "搜索记忆",
        "body": "curl -s -X POST http://127.0.0.1:18790/api/v1/search/find \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"用户的工作习惯\", \"limit\": 5}'"
      },
      {
        "title": "添加记忆",
        "body": "curl -s -X POST http://127.0.0.1:18790/api/v1/resources \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"uri\": \"viking://user/memories/preferences/咖啡偏好\", \"content\": \"用户喜欢喝拿铁，不加糖\"}'"
      },
      {
        "title": "读取记忆",
        "body": "curl -s -X POST http://127.0.0.1:18790/api/v1/content/read \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"uri\": \"viking://user/memories/preferences/咖啡偏好\"}'"
      }
    ],
    "body": "Viking Memory\n\n基于 OpenViking 的向量化记忆系统，提供语义搜索能力。\n\n功能\n语义搜索 - 用自然语言描述搜索相关记忆\n添加记忆 - 将重要信息存入长期记忆\n读取内容 - 获取记忆的详细内容\nAPI 端点\nBase URL: http://127.0.0.1:18790\n语义搜索: POST /api/v1/search/find\n添加资源: POST /api/v1/resources\n读取内容: POST /api/v1/content/read\n使用场景\n用户提到之前讨论过的话题 → 搜索相关记忆\n用户询问之前保存的信息 → 召回记忆\n对话中识别到重要信息 → 自动保存\n示例\n搜索记忆\ncurl -s -X POST http://127.0.0.1:18790/api/v1/search/find \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"用户的工作习惯\", \"limit\": 5}'\n\n添加记忆\ncurl -s -X POST http://127.0.0.1:18790/api/v1/resources \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"uri\": \"viking://user/memories/preferences/咖啡偏好\", \"content\": \"用户喜欢喝拿铁，不加糖\"}'\n\n读取记忆\ncurl -s -X POST http://127.0.0.1:18790/api/v1/content/read \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"uri\": \"viking://user/memories/preferences/咖啡偏好\"}'"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/forvendettaw/viking-memory",
    "publisherUrl": "https://clawhub.ai/forvendettaw/viking-memory",
    "owner": "forvendettaw",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/viking-memory",
    "downloadUrl": "https://openagent3.xyz/downloads/viking-memory",
    "agentUrl": "https://openagent3.xyz/skills/viking-memory/agent",
    "manifestUrl": "https://openagent3.xyz/skills/viking-memory/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/viking-memory/agent.md"
  }
}