# Send Viking Memory 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": "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": {
    "downloadUrl": "/downloads/viking-memory",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=viking-memory",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "index.js"
    ],
    "downloadMode": "redirect",
    "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Viking Memory

基于 OpenViking 的向量化记忆系统，提供语义搜索能力。

### 功能

语义搜索 - 用自然语言描述搜索相关记忆
添加记忆 - 将重要信息存入长期记忆
读取内容 - 获取记忆的详细内容

### API 端点

Base URL: http://127.0.0.1:18790
语义搜索: POST /api/v1/search/find
添加资源: POST /api/v1/resources
读取内容: POST /api/v1/content/read

### 使用场景

用户提到之前讨论过的话题 → 搜索相关记忆
用户询问之前保存的信息 → 召回记忆
对话中识别到重要信息 → 自动保存

### 搜索记忆

curl -s -X POST http://127.0.0.1:18790/api/v1/search/find \\
  -H "Content-Type: application/json" \\
  -d '{"query": "用户的工作习惯", "limit": 5}'

### 添加记忆

curl -s -X POST http://127.0.0.1:18790/api/v1/resources \\
  -H "Content-Type: application/json" \\
  -d '{"uri": "viking://user/memories/preferences/咖啡偏好", "content": "用户喜欢喝拿铁，不加糖"}'

### 读取记忆

curl -s -X POST http://127.0.0.1:18790/api/v1/content/read \\
  -H "Content-Type: application/json" \\
  -d '{"uri": "viking://user/memories/preferences/咖啡偏好"}'
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: forvendettaw
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/viking-memory)
- [Send to Agent page](https://openagent3.xyz/skills/viking-memory/agent)
- [JSON manifest](https://openagent3.xyz/skills/viking-memory/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/viking-memory/agent.md)
- [Download page](https://openagent3.xyz/downloads/viking-memory)