Viking Memory
OpenViking 长期记忆系统。用于语义检索用户偏好、历史对话、重要信息等。当需要召回用户之前提到的信息、查找相关上下文时使用此 Skill。
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 1 · 530 · 2 current installs · 3 all-time installs
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description (长期记忆/语义检索) align with required actions and the included code: search, add, read, list and status operations against a local Viking API. No unrelated credentials, binaries, or install steps are requested.
Instruction Scope
SKILL.md and index.js instruct only local HTTP calls to 127.0.0.1:18790 and show example curl requests. One minor scope note: the docs mention '自动保存' (auto-save important info during conversation), which gives the agent discretion to persist conversation content to the memory store — a privacy consideration but not a technical incoherence.
Install Mechanism
No install spec is provided (instruction + code file only). Nothing is downloaded or executed from external URLs; the skill relies on a local service. This is low install risk.
Credentials
The skill requests no environment variables, no credentials, and uses only a hard-coded localhost URL. Environment/credential requirements are proportionate to the stated purpose.
Persistence & Privilege
always is false and there are no instructions altering other skills or system-wide configuration. The skill can be invoked autonomously (platform default) — combined with the 'auto-save' behavior this is a privacy consideration but not an incoherence or excessive privilege request.
Assessment
This skill communicates only with a local OpenViking service on 127.0.0.1:18790 and asks for no external credentials, so the main risk is privacy: the agent (or you) may store conversation content into your local memory store. Before installing, confirm you trust the local OpenViking instance and that it is bound to localhost (not exposed externally). If you are uncomfortable with automatic saving of chat content, either disable autonomous invocation for this skill in your agent settings or avoid using the 'auto-save' behavior; you can still call search/add/read manually. The included index.js is short and readable — review it if you want to confirm behavior.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
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/咖啡偏好"}'
Files
3 totalSelect a file
Select a file to preview.
Comments
Loading comments…
