← All skills
Tencent SkillHub · Other

A2A Vault

Zero-knowledge secrets management via PassBox — store, retrieve, rotate, and inject credentials securely.

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

Zero-knowledge secrets management via PassBox — store, retrieve, rotate, and inject credentials securely.

⬇ 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
SKILL.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. 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. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
2.0.0

Documentation

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

A2A Vault (PassBox)

Zero-knowledge secrets management. Store API keys, tokens, and credentials with client-side encryption. The server never sees plaintext values.

Quick Start

Store a secret: Use passbox_set_secret with vault "my-project", key "API_KEY", value "sk-abc123" Retrieve a secret: Use passbox_get_secret with vault "my-project", key "API_KEY"

Secret Operations

ToolDescriptionpassbox_get_secretRetrieve and decrypt a secretpassbox_set_secretCreate or update a secret (encrypted before upload)passbox_list_secretsList secret names (values not returned)passbox_delete_secretDelete a secretpassbox_rotate_secretTrigger manual secret rotation

Vault Management

ToolDescriptionpassbox_list_vaultsList all available vaultspassbox_list_environmentsList environments (dev, staging, prod)passbox_get_environmentGet all secrets in an environment

.env Integration

ToolDescriptionpassbox_diff_envCompare local .env with vault secretspassbox_import_envImport .env file into vault

Set up project credentials

passbox_list_vaults — see existing vaults passbox_set_secret — store each credential passbox_list_secrets — verify all keys are stored

Sync .env with vault

Read your local .env file passbox_diff_env — see what's different passbox_import_env — push local secrets to vault

Environment promotion

passbox_get_environment for "dev" Review values passbox_set_secret for each key in "staging"

Credential injection

Use with a2a_secure_execute to automatically inject secrets: Use a2a_secure_execute with toolId "my-api-tool" and input { "apiKey": "{{API_KEY}}" }, vault "my-project" The {{API_KEY}} placeholder is resolved from PassBox before execution.

Security Model

Client-side encryption: Values are encrypted before leaving your device Zero-knowledge: The server stores only ciphertext Environment isolation: dev/staging/prod secrets are fully separated Audit trail: All access is logged Secret rotation: Built-in rotation support with webhooks

Category context

Long-tail utilities that do not fit the current primary taxonomy cleanly.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc