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

wundervault-vault奇迹金库

Agent Skill

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

总安装

1,521

周安装

64

GitHub Stars

公开资料未说明

下载量

532
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install wundervault-vault

简介

从加密保管库安全读取密码与 API 密钥的工具。

  • 支持在注入凭据后运行授权 shell 命令。
  • 用于审计敏感配置与自动化流程中的身份验证。wundervault-vault 属于运维类 Skill,可作为该场景下的辅助能力补充。
  • 安装命令:openclaw skills install wundervault-vault。
  • 必须配置保管库访问权限并隔离高权限操作环境。

SKILL.md

name
wundervault-vault
description
Read passwords, API keys, and credentials from a Wundervault encrypted secret vault, and run vault-authorized shell commands with secrets injected — without exposing them in chat. Self-hosted alternative to 1Password or Bitwarden for agents. Requires the @wundervault/mcp-server npm package.

Wundervault Vault

Wundervault is an encrypted, self-hosted secret vault that exposes secrets to agents via MCP tools. Secrets never appear in chat — they are decrypted server-side and injected directly into commands or returned over the encrypted MCP channel.

Check Setup First

Before doing anything vault-related, check whether the vault tools are available:

  • vault_entries_list — available? → vault is connected, proceed
  • If tools are missing → tell the user to install the MCP server (see INSTALL.md)

Tools

vault_entries_list

List all vault entries available to this agent. Returns entry IDs and names only — no secret values.

vault_entries_list()
→ [{ id: "abc123", name: "ResendApiKey", tier: "full" }, ...]

Use this first to discover available secrets before calling vault_entry_get.

vault_entry_get

Retrieve a secret by entry ID. The plaintext value is returned over the encrypted MCP channel.

vault_entry_get(entry_id: "abc123")
→ { name: "ResendApiKey", value: "re_..." }

Use the entry ID from vault_entries_list, not the secret name.

vault_exec

Execute a shell command with a vault secret injected — the secret is never exposed in chat or logs.

vault_exec(entry_id: "abc123", command: "npm publish --access public")

Two tiers:

  • Tier 1 (free): runs immediately, no unlock needed
  • Tier 2 (session-locked): call vault_session_unlock first — used for high-risk operations (deployments, publishes, infrastructure changes)

Shell escape sequences ($(), backticks, bash -c, eval) are hard-blocked before the secret is decrypted. Do not attempt to use them.

vault_entry_inject_env

Write a secret into a config file as an environment variable, without it passing through chat.

vault_entry_inject_env(entry_id: "abc123", path: "/home/user/app/.env", key: "RESEND_API_KEY")

vault_session_unlock

Unlock Tier 2 execution for the current session. Call this before vault_exec on a Tier 2 entry.

vault_session_unlock()
→ { unlocked: true, expires_at: "..." }

vault_session_status

Check whether the current session is unlocked and when it expires.

vault_session_status()
→ { locked: false, expires_at: "..." }

vault_entry_forget

Discard a vault entry reference from context. Does not delete the vault entry.

vault_entry_forget(entry_id: "abc123")
→ ✔️ Reference discarded.

Common Patterns

Find and read a secret:

1. vault_entries_list() → get entry ID for "ResendApiKey"
2. vault_entry_get(entry_id: "abc123") → use value

Run a command with secret injected (Tier 1):

vault_exec(entry_id: "abc123", command: "aws s3 sync ./dist s3://mybucket")

Tier 2 flow (e.g. npm publish, deploy):

1. vault_session_unlock()
2. vault_exec(entry_id: "abc123", command: "npm publish --access public")

Security Notes

  • Secrets are end-to-end encrypted; the agent receives only what it needs
  • The inject_as field on vault entries controls how the secret is passed (env var name, CLI flag prefix, etc.)
  • Tier 2 entries are configured by the vault owner — the agent cannot escalate a Tier 1 entry to Tier 2
  • Never echo, log, or store a secret retrieved via vault_entry_get

More Info

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

70.27%
按下载量换算374

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills