Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

setup-openviking-remote设置 openviking 远程

Agent Skill

setup-openviking-remote 用于补充开发相关能力,适合在 OpenClaw 中需要让 Agent 承接开发相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,521

周安装

104

GitHub Stars

公开资料未说明

下载量

824
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:setup-openviking-remote(设置 openviking 远程)
来源仓库:https://github.com/linqiang391/setup-openviking-remote
安装命令:
openclaw skills install setup-openviking-remote
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install setup-openviking-remote

简介

通过自然语言对话安装与配置 OpenViking 长期记忆插件,覆盖环境检查到部署全流程。

  • 适用于扩展 OpenClaw 记忆能力与实现长期知识管理的开发任务。
  • 通过 openclaw skills install setup-openviking-remote 安装,需确认插件兼容性与网络权限。
  • 依赖外部插件仓库与配置脚本,建议检查版本匹配与依赖项。
  • 使用前请核实是否允许安装第三方组件、执行远程脚本及访问外部服务,注意安全策略。

SKILL.md

name
setup-openviking-remote
description
>
version
1.0.0
metadata
openclaw
requires
bins
emoji
🦣
homepage
https://github.com/volcengine/OpenViking
tags

Setup OpenViking Remote — Agent Installation Skill

You are about to help a user install and configure the OpenViking memory plugin for OpenClaw. The user does NOT know how to use a terminal. You will collect information through conversation, then run all commands yourself using your shell/terminal tool.

Read this entire document before starting. Follow every step in order. Do NOT skip steps.


STEP 0: Detect Language

If the user's message is in Chinese, respond in Chinese throughout. If in English, respond in English throughout. All example messages below are given in both languages — use the matching one.


STEP 1: Detect Operating System

Run this command silently (do NOT show it to the user):

uname -s 2>/dev/null || echo WINDOWS
  • If output contains Darwin → this is macOS. Set OS=mac.
  • If output contains Linux → this is Linux. Set OS=linux.
  • If output is WINDOWS or the command fails → this is Windows. Set OS=windows.

Remember the OS for later steps. Do NOT tell the user about this step.


STEP 2: Check Prerequisites

Run these commands silently:

node -v
openclaw --version

If node is not found: Tell the user:

(CN) 你的系统没有安装 Node.js。OpenClaw 和 OpenViking 插件需要 Node.js >= 22。请先安装 Node.js,然后再来找我。 (EN) Node.js is not installed. OpenClaw requires Node.js >= 22. Please install it first.

Stop here. Do NOT continue.

If openclaw is not found: Tell the user:

(CN) 你的系统没有安装 OpenClaw。请先安装 OpenClaw >= 2026.3.7,然后再来找我。 (EN) OpenClaw is not installed. Please install OpenClaw >= 2026.3.7 first.

Stop here. Do NOT continue.

If both exist: proceed silently to Step 3.


STEP 3: Greet and Explain

Send this message to the user:

(CN) 好的,我来帮你配置 OpenViking 长期记忆功能!配置好之后,我会自动记住我们对话中的重要信息,下次聊天也能回忆起来。 我需要你提供以下信息(如果不确定,可以问你的管理员要): 1. OpenViking 服务地址 — 比如 https://ov.example.comhttp://192.168.1.100:1933 2. API Key — 用于身份验证(如果服务没有开认证,可以留空) 3. Agent 标识 — 你希望我在 OpenViking 里叫什么名字?(留空我就用 default) 先告诉我服务地址吧?
(EN) I'll set up OpenViking long-term memory for you! Once configured, I'll automatically remember important information from our conversations and recall it in future chats. I need 3 pieces of information (ask your admin if unsure): 1. OpenViking server URL — e.g. https://ov.example.com or http://192.168.1.100:1933 2. API Key — for authentication (leave blank if no auth) 3. Agent identifier — what should I call myself in OpenViking? (blank = default) What's the server URL?

STEP 4: Collect Information

Collect these 3 values from the user one by one, through natural conversation. Be patient. If the user gives multiple values at once, parse them all.

4a. Endpoint (REQUIRED)

The user must provide this. Validate format:

  • Must start with http:// or https://
  • Must not end with /health or /api (strip trailing path if present)
  • Strip any trailing /

If the user gives something like ov.example.com without protocol, prepend https://.

If the user says they don't know, suggest they ask their admin. Do NOT make up a URL.

Store as ENDPOINT.

4b. API Key (OPTIONAL)

Ask:

(CN) API Key 是什么?如果服务没有认证要求,直接说"没有"或"空"就行。 (EN) What's the API Key? Say "none" or "skip" if the server has no authentication.

If user says "没有"/"空"/"none"/"skip"/"no"/empty → set API_KEY to empty string. Otherwise store whatever they give as API_KEY.

4c. Agent ID (OPTIONAL)

Ask:

(CN) 你希望这个 Agent 在 OpenViking 里叫什么名字?直接回车或说"默认"就用 default。 (EN) What should this agent be called in OpenViking? Press enter or say "default" to use default.

If user says "默认"/"default"/empty → set AGENT_ID to default. Otherwise store their answer as AGENT_ID.


STEP 5: Validate Connection

Tell the user you're checking the connection, then run:

(CN) 好,让我先测试一下能不能连上你的 OpenViking 服务... (EN) Let me test the connection to your OpenViking server...

Run this command:

If OS=windows:

Invoke-WebRequest -Uri "ENDPOINT/health" -TimeoutSec 10 -UseBasicParsing | Select-Object -ExpandProperty StatusCode

If OS=mac or OS=linux:

curl -sS -o /dev/null -w "%{http_code}" --connect-timeout 10 "ENDPOINT/health"

Replace ENDPOINT with the actual value.

If the result is 200: Tell the user:

(CN) ✅ 连接成功!服务正常运行。 (EN) ✅ Connection successful! Server is running.

Proceed to Step 6.

If the result is 401 or 403: Tell the user:

(CN) ❌ 服务器返回了认证错误(401/403)。请确认你的 API Key 是否正确。 (EN) ❌ Server returned auth error (401/403). Please check your API Key.

Go back to Step 4b and ask for the API Key again.

If the result is anything else, or the command fails/times out: Tell the user:

(CN) ❌ 无法连接到 ENDPOINT。可能的原因: - 服务地址输入有误 - 服务还没有启动 - 网络不通(防火墙、VPN 等) 请检查后告诉我正确的地址,或者确认服务已启动。 (EN) ❌ Cannot connect to ENDPOINT. Possible causes: - Wrong URL - Server not running - Network issue (firewall, VPN, etc.) Please verify and give me the correct URL, or confirm the server is running.

Go back to Step 4a and ask for the endpoint again. Do NOT proceed until the health check passes.


STEP 6: Install Plugin

Tell the user:

(CN) 连接没问题,现在开始安装插件... (EN) Connection verified, installing the plugin now...

Run this command:

openclaw plugins install clawhub:@openclaw/openviking

If the command succeeds (exit code 0): Proceed to Step 7.

If the output contains "already installed" or similar: That's fine, proceed to Step 7.

If the command fails: Tell the user the error and suggest:

(CN) 插件安装失败。请检查网络连接。如果问题持续,尝试手动运行这个命令:openclaw plugins install clawhub:@openclaw/openviking (EN) Plugin installation failed. Check your network. If the issue persists, try running: openclaw plugins install clawhub:@openclaw/openviking

Stop here. Do NOT continue until the plugin is installed.


STEP 7: Configure Plugin

Run these commands one by one. Each command must succeed before running the next one.

7a. Set mode to remote

openclaw config set plugins.entries.openviking.config.mode remote

7b. Set the endpoint

openclaw config set plugins.entries.openviking.config.baseUrl ENDPOINT

Replace ENDPOINT with the actual URL (e.g. https://ov.example.com).

7c. Set API Key (ONLY if API_KEY is not empty)

openclaw config set plugins.entries.openviking.config.apiKey API_KEY

Replace API_KEY with the actual key.

If API_KEY is empty, SKIP this command entirely. Do NOT run it with an empty value.

7d. Set Agent ID

openclaw config set plugins.entries.openviking.config.agentId AGENT_ID

Replace AGENT_ID with the actual value (e.g. default).

7e. Activate the context engine slot

openclaw config set plugins.slots.contextEngine openviking

If ANY of these commands fail, tell the user the specific error and stop.


STEP 8: Source Environment and Restart Gateway

8a. Source environment file (if it exists)

If OS=windows: Check if the file exists first:

Test-Path "$HOME/.openclaw/openviking.env.ps1"

If it exists, run:

. "$HOME/.openclaw/openviking.env.ps1"

If OS=mac or OS=linux: Check if the file exists first:

test -f ~/.openclaw/openviking.env && source ~/.openclaw/openviking.env

If the env file does not exist, that's OK for remote mode. Skip and continue.

8b. Restart gateway

openclaw gateway restart

If gateway restart fails, try:

openclaw gateway --force

If both fail, tell the user:

(CN) Gateway 重启失败。请手动运行 openclaw gateway restart。 (EN) Gateway restart failed. Please manually run openclaw gateway restart.

Wait 3 seconds after restart before proceeding to verification.


STEP 9: Verify Installation

Run:

openclaw config get plugins.slots.contextEngine

If output is openviking: Installation is successful! Tell the user:

(CN) 🎉 全部搞定!OpenViking 记忆插件已经安装并配置完成。 从现在开始,我会: - 自动记忆:对话中的重要信息会被自动保存 - 自动回忆:回复前会自动搜索相关记忆 - 跨会话:下次聊天也能记住之前的内容 你可以试着说"记住我的邮箱是 xxx@example.com"来测试一下!
(EN) 🎉 All done! OpenViking memory plugin is installed and configured. From now on, I will: - Auto-remember: Important info from conversations is saved automatically - Auto-recall: Relevant memories are searched before each response - Cross-session: I'll remember things from previous chats Try saying "Remember my email is xxx@example.com" to test it!

If output is NOT openviking: Tell the user:

(CN) ⚠️ 插件似乎没有正确激活。让我检查一下日志... (EN) ⚠️ Plugin doesn't seem to be activated correctly. Let me check the logs...

Then run:

openclaw logs 2>&1 | tail -20

Show the last 20 lines of logs to the user and suggest they contact support.


ERROR RECOVERY REFERENCE

Use this table if you encounter errors at any step:

Error MessageLikely CauseFix
command not found: openclawOpenClaw not installedAsk user to install OpenClaw first
command not found: nodeNode.js not installedAsk user to install Node.js >= 22
ECONNREFUSED or connection refusedServer not runningAsk user to verify server is running
ETIMEDOUT or timeoutNetwork issueAsk user to check firewall/VPN/URL
401 UnauthorizedWrong API KeyAsk user to re-enter API Key
403 ForbiddenAPI Key lacks permissionsAsk user to check permissions with admin
404 Not Found on /healthWrong URL or old server versionAsk user to verify URL
ENOTFOUND or DNS errorInvalid domain nameAsk user to check the URL
plugins install fails with network errornpm/ClawHub unreachableAsk user to check internet connection
config set returns errorOpenClaw config locked or corruptedAsk user to run openclaw config check
Gateway won't startPort conflict or other processRun openclaw logs and share with user

IMPORTANT RULES

  1. NEVER ask the user to run commands themselves. You run everything.
  2. NEVER skip the health check (Step 5). If the server is unreachable, do NOT proceed.
  3. NEVER proceed past a failed step. Fix or report every error before moving on.
  4. ALWAYS use the exact commands shown. Do not improvise or combine commands.
  5. ALWAYS replace placeholders (ENDPOINT, API_KEY, AGENT_ID) with actual values before running commands.
  6. If a step is marked as "proceed silently", do NOT show the command or its output to the user unless there is an error.
  7. Be encouraging and patient. The user may not understand technical terms. Explain in simple words.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.55%
按下载量换算688

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills