# Send Vault 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vault",
    "name": "Vault",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zuiho-kai/vault",
    "canonicalUrl": "https://clawhub.ai/zuiho-kai/vault",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vault",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vault",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "CHANGELOG.md",
      "index.js",
      "openclaw.plugin.json",
      "package-lock.json",
      "package.json",
      "README.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vault",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:24:05.377Z",
      "expiresAt": "2026-05-17T13:24:05.377Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vault",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vault",
        "contentDisposition": "attachment; filename=\"vault-1.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vault"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vault"
    },
    "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/vault",
    "downloadUrl": "https://openagent3.xyz/downloads/vault",
    "agentUrl": "https://openagent3.xyz/skills/vault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vault/agent.md"
  }
}
```
## Documentation

### vault

Use when you need secure local storage for passwords, API keys, or credentials.

🔒 AES-256-GCM encryption - This plugin stores passwords encrypted using industry-standard AES-256-GCM encryption with a master key.

### Features

🔒 AES-256-GCM encryption for all stored passwords
📝 Simple command-line interface
🗂️ Key management and listing
💾 JSON-based local storage (encrypted)
🕐 Automatic timestamp tracking
🔑 Master key protection

### Installation

clawhub install vault

### Set a password

vault gemini sk-abc123xyz

### Show a password

vault gemini show

### Remove a password

vault gemini remove

### List all keys

vault list

### Master Key (Required)

Set your master encryption key via environment variable:

export VAULT_MASTER_KEY="your-secure-master-key-here"

Or in your OpenClaw config:

{
  "plugins": {
    "vault": {
      "masterKey": "your-secure-master-key-here",
      "storageFile": ".vault/passwords.json"
    }
  }
}

Options:

masterKey - Master encryption key (can also use VAULT_MASTER_KEY env var)
storageFile (default: .vault/passwords.json) - Storage file path relative to home directory

⚠️ Important: Keep your master key secure! Without it, you cannot decrypt stored passwords.

### Security

🔒 Encryption Details:

Algorithm: AES-256-GCM (Galois/Counter Mode)
Key Derivation: scrypt with random salt per password
IV: Random 12-byte initialization vector per password (GCM recommended size)
Salt: Random 32-byte salt per password, stored with encrypted data
Authentication: GCM authentication tag for integrity verification

Security Best Practices:

Use a strong, unique master key (minimum 32 characters recommended)
Store master key securely (environment variable or secure config)
Set strict file permissions: chmod 600 ~/.vault/passwords.json
Add .vault/ to your .gitignore
Never commit your master key to version control
Use system-level disk encryption for additional protection
Backup your master key securely - lost keys mean lost passwords

Suitable for:

Development/testing credentials
API keys and tokens
Personal passwords
Team shared credentials (with secure key distribution)

### Examples

# Save API keys
vault openai sk-proj-abc123
vault anthropic sk-ant-xyz789

# View a key
vault openai show
# Output: Password for 'openai': sk-proj-abc123

# List all keys
vault list
# Output:
# Stored passwords:
# • openai (created: 2026-02-17T..., updated: 2026-02-17T...)
# • anthropic (created: 2026-02-17T..., updated: 2026-02-17T...)

# Remove a key
vault openai remove

### Links

GitHub: https://github.com/zuiho-kai/openclaw-vault
Issues: https://github.com/zuiho-kai/openclaw-vault/issues
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: zuiho-kai
- Version: 1.1.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T13:24:05.377Z
- Expires at: 2026-05-17T13:24:05.377Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vault)
- [Send to Agent page](https://openagent3.xyz/skills/vault/agent)
- [JSON manifest](https://openagent3.xyz/skills/vault/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vault/agent.md)
- [Download page](https://openagent3.xyz/downloads/vault)