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

vt-sentinel-installervt 哨兵安装程序

Agent Skill

vt-sentinel-installer 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

11,619

周安装

489

GitHub Stars

公开资料未说明

下载量

4,068
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install vt-sentinel-installer

简介

用于安装或升级 VT Sentinel 安全插件,集成 VirusTotal 扫描与恶意软件防护功能。

  • 适合安全运维场景,可自动化插件部署和版本更新流程。
  • 使用时需确认用户请求的具体操作类型(安装/升级/启用),避免误触发。
  • 通过 clawhub 安装,专为 OpenClaw 设计,需准备有效的 VirusTotal API 凭证。
  • 注意插件行为可能影响系统性能,建议在非高峰时段执行安装并监控系统资源占用。

SKILL.md

name
install-vt-sentinel
description
>-
user-invocable
true
metadata
openclaw
emoji
\F6E1\️
requires
anyBins

Install / Upgrade VT Sentinel Plugin

This skill delegates everything to the official openclaw CLI. It does not delete files, edit openclaw.json manually, download tarballs from external URLs, or touch system services directly. All filesystem and config changes are performed by openclaw plugins subcommands.

What this skill will do

Before proceeding, tell the user the exact actions that will run, so they can approve:

  1. Query installed plugins (openclaw plugins list) — read-only.
  2. If not installed → openclaw plugins install clawhub:openclaw-plugin-vt-sentinel

(downloads the verified ClawHub package into ~/.openclaw/extensions/).

  1. If installed → openclaw plugins update openclaw-plugin-vt-sentinel

(in-place upgrade handled by the OpenClaw CLI).

  1. openclaw gateway restart — restart the user-scope gateway so the plugin loads.
  2. Verify the plugin is active.

User data (vt-sentinel-agent.json, vt-sentinel-state.json, vt-sentinel-audit/) lives in <OPENCLAW_STATE_DIR> (outside the plugin directory) and is preserved across install/upgrade.

Source & provenance

  • ClawHub package: openclaw-plugin-vt-sentinel (verified / LLM-reviewed clean).
  • npm package: openclaw-plugin-vt-sentinel (public, MIT licensed).
  • Source repository: https://github.com/king-tero/VT-sentinel.

If the user is uncertain about provenance, suggest inspecting the package first with openclaw plugins inspect clawhub:openclaw-plugin-vt-sentinel.

Step 1: Check current state

exec { "command": "openclaw plugins list" }

Look for openclaw-plugin-vt-sentinel in the output.

  • Not present → go to Step 2 (fresh install).
  • Present → go to Step 3 (upgrade in place).

Step 2: Fresh install

exec { "command": "openclaw plugins install clawhub:openclaw-plugin-vt-sentinel" }

This downloads the ClawHub package, registers the plugin, and loads skills and hooks automatically. No manual configuration needed. Go to Step 4.

Step 3: Upgrade in place

exec { "command": "openclaw plugins update openclaw-plugin-vt-sentinel" }

The OpenClaw CLI handles the upgrade atomically: it fetches the latest version, replaces the extension directory, and updates plugins.installs metadata. User config in plugins.entries and state files under <OPENCLAW_STATE_DIR> are preserved.

If the CLI reports "already at latest version", tell the user VT Sentinel is up to date and skip to Step 5 (verify only).

If the update is blocked (for example by a corrupted install), fall back to a clean reinstall using only official subcommands:

exec { "command": "openclaw plugins uninstall openclaw-plugin-vt-sentinel --force" }
exec { "command": "openclaw plugins install clawhub:openclaw-plugin-vt-sentinel" }

uninstall removes the extension directory and cleans plugins.installs in a single supported operation — do not edit openclaw.json manually.

Step 4: Restart the gateway

The plugin will not become active until the gateway restarts. The OpenClaw CLI provides a cross-platform wrapper that handles the underlying service manager (launchd on macOS, systemd user unit on Linux, schtasks on Windows):

exec { "command": "openclaw gateway restart" }

Step 5: Verify

exec { "command": "openclaw plugins list" }

Confirm openclaw-plugin-vt-sentinel appears as loaded. A healthy install registers 9 tools and 2 hooks.

Step 6: Inform the user

  1. VT Sentinel is installed and active (mention whether this was a fresh

install or an upgrade, and from which version if known).

  1. No API key needed — the plugin auto-registers with VirusTotal's AI API

(VTAI) on first scan. Zero configuration required.

  1. Optionally, the user can add their own VirusTotal API key for higher rate

limits:

   openclaw config set plugins.entries.openclaw-plugin-vt-sentinel.config.apiKey "vt_xxxxxxxx"

Since v0.11.0 the VIRUSTOTAL_API_KEY environment variable fallback was retired — only the plugin config value or VTAI auto-registration are supported.

What VT Sentinel provides

Tools exposed after install:

  • vt_scan_file — Full file scan (AV + AI Code Insight)
  • vt_check_hash — Quick hash lookup
  • vt_upload_consent — Consent flow for sensitive file uploads
  • vt_sentinel_status — View current config, watched dirs, protection status
  • vt_sentinel_configure — Change settings at runtime (presets, notify level, block mode)
  • vt_sentinel_reset_policy — Reset to defaults
  • vt_sentinel_help — Quick-start guide and privacy info
  • vt_sentinel_update — Check for updates and get upgrade instructions
  • vt_sentinel_re_register — Re-register agent identity with VTAI

Behavior:

  • Automatic scanning of downloaded and created files (AV + AI Code Insight)
  • Active blocking of known-malicious file execution and dangerous command patterns
  • Rotating audit logs under <OPENCLAW_STATE_DIR>/vt-sentinel-audit/

Troubleshooting

If any step fails:

  • Check connectivity to ClawHub and the OpenClaw gateway: openclaw gateway status.
  • Re-run the failing command with verbose output: append --verbose to the

openclaw plugins ... command.

  • Inspect plugin load errors: openclaw plugins doctor.
  • Inspect the package before install: openclaw plugins inspect clawhub:openclaw-plugin-vt-sentinel.

Constraints

  • Do not modify ~/.openclaw/openclaw.json manually — `openclaw plugins

install/update/uninstall` handle configuration atomically.

  • Do not run rm -rf on ~/.openclaw/extensions/... — use

openclaw plugins uninstall instead.

  • If the user reports the plugin is blocked, check plugins.deny in their

openclaw.json (read-only inspection is fine; the user edits it themselves).

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

98.87%
按下载量换算4,022

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills