Jump to related tools in the same category or review the original source on GitHub.

DevOps & Cloud @zuiho-kai Updated 7/18/2026 1,960 downloads 4 stars Security: Pass

Vault OpenClaw Plugin & Skill | ClawHub

Looking to integrate Vault into your AI workflows? This free OpenClaw plugin from ClawHub helps you automate devops & cloud tasks instantly, without having to write custom tools from scratch.

What this skill does

Secure local password storage tool with AES-256-GCM encryption. Store, retrieve, and manage passwords with CLI commands.

Install

ClawHub CLI
openclaw skills install @zuiho-kai/vault
Node.js (npx)
npx clawhub@latest install vault

Full SKILL.md

Open original
Metadata table.
nameversiondescriptionhomepagetags
vault1.1.2Secure local password storage tool with AES-256-GCM encryption. Store, retrieve, and manage passwords with CLI commands.https://github.com/zuiho-kai/openclaw-vault
passwordvaultsecuritycredentialspassword-managercliencryption

SKILL.md content below is scrollable.

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

Usage

Set a password

vault gemini sk-abc123xyz

Show a password

vault gemini show

Remove a password

vault gemini remove

List all keys

vault list

Configuration

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

ClawHub Registry URL: https://clawhub.ai/zuiho-kai/skills/vault

Related skills

If this matches your use case, these are close alternatives in the same category.