โ† All skills
Tencent SkillHub ยท Developer Tools

Vault

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

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, index.js, openclaw.plugin.json, package-lock.json, package.json, README.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Config2 Docs1 Scripts
  • CHANGELOG.md Docs
  • README.md Docs
  • index.js Scripts
  • openclaw.plugin.json Config
  • package-lock.json Config
  • package.json Config