{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vault",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vault",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "CHANGELOG.md",
      "index.js",
      "openclaw.plugin.json",
      "package-lock.json",
      "package.json",
      "README.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vault",
    "agentPageUrl": "https://openagent3.xyz/skills/vault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vault/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "vault",
        "body": "Use when you need secure local storage for passwords, API keys, or credentials.\n\n🔒 AES-256-GCM encryption - This plugin stores passwords encrypted using industry-standard AES-256-GCM encryption with a master key."
      },
      {
        "title": "Features",
        "body": "🔒 AES-256-GCM encryption for all stored passwords\n📝 Simple command-line interface\n🗂️ Key management and listing\n💾 JSON-based local storage (encrypted)\n🕐 Automatic timestamp tracking\n🔑 Master key protection"
      },
      {
        "title": "Installation",
        "body": "clawhub install vault"
      },
      {
        "title": "Set a password",
        "body": "vault gemini sk-abc123xyz"
      },
      {
        "title": "Show a password",
        "body": "vault gemini show"
      },
      {
        "title": "Remove a password",
        "body": "vault gemini remove"
      },
      {
        "title": "List all keys",
        "body": "vault list"
      },
      {
        "title": "Master Key (Required)",
        "body": "Set your master encryption key via environment variable:\n\nexport VAULT_MASTER_KEY=\"your-secure-master-key-here\"\n\nOr in your OpenClaw config:\n\n{\n  \"plugins\": {\n    \"vault\": {\n      \"masterKey\": \"your-secure-master-key-here\",\n      \"storageFile\": \".vault/passwords.json\"\n    }\n  }\n}\n\nOptions:\n\nmasterKey - Master encryption key (can also use VAULT_MASTER_KEY env var)\nstorageFile (default: .vault/passwords.json) - Storage file path relative to home directory\n\n⚠️ Important: Keep your master key secure! Without it, you cannot decrypt stored passwords."
      },
      {
        "title": "Security",
        "body": "🔒 Encryption Details:\n\nAlgorithm: AES-256-GCM (Galois/Counter Mode)\nKey Derivation: scrypt with random salt per password\nIV: Random 12-byte initialization vector per password (GCM recommended size)\nSalt: Random 32-byte salt per password, stored with encrypted data\nAuthentication: GCM authentication tag for integrity verification\n\nSecurity Best Practices:\n\nUse a strong, unique master key (minimum 32 characters recommended)\nStore master key securely (environment variable or secure config)\nSet strict file permissions: chmod 600 ~/.vault/passwords.json\nAdd .vault/ to your .gitignore\nNever commit your master key to version control\nUse system-level disk encryption for additional protection\nBackup your master key securely - lost keys mean lost passwords\n\nSuitable for:\n\nDevelopment/testing credentials\nAPI keys and tokens\nPersonal passwords\nTeam shared credentials (with secure key distribution)"
      },
      {
        "title": "Examples",
        "body": "# Save API keys\nvault openai sk-proj-abc123\nvault anthropic sk-ant-xyz789\n\n# View a key\nvault openai show\n# Output: Password for 'openai': sk-proj-abc123\n\n# List all keys\nvault list\n# Output:\n# Stored passwords:\n# • openai (created: 2026-02-17T..., updated: 2026-02-17T...)\n# • anthropic (created: 2026-02-17T..., updated: 2026-02-17T...)\n\n# Remove a key\nvault openai remove"
      },
      {
        "title": "Links",
        "body": "GitHub: https://github.com/zuiho-kai/openclaw-vault\nIssues: https://github.com/zuiho-kai/openclaw-vault/issues"
      }
    ],
    "body": "vault\n\nUse when you need secure local storage for passwords, API keys, or credentials.\n\n🔒 AES-256-GCM encryption - This plugin stores passwords encrypted using industry-standard AES-256-GCM encryption with a master key.\n\nFeatures\n🔒 AES-256-GCM encryption for all stored passwords\n📝 Simple command-line interface\n🗂️ Key management and listing\n💾 JSON-based local storage (encrypted)\n🕐 Automatic timestamp tracking\n🔑 Master key protection\nInstallation\nclawhub install vault\n\nUsage\nSet a password\nvault gemini sk-abc123xyz\n\nShow a password\nvault gemini show\n\nRemove a password\nvault gemini remove\n\nList all keys\nvault list\n\nConfiguration\nMaster Key (Required)\n\nSet your master encryption key via environment variable:\n\nexport VAULT_MASTER_KEY=\"your-secure-master-key-here\"\n\n\nOr in your OpenClaw config:\n\n{\n  \"plugins\": {\n    \"vault\": {\n      \"masterKey\": \"your-secure-master-key-here\",\n      \"storageFile\": \".vault/passwords.json\"\n    }\n  }\n}\n\n\nOptions:\n\nmasterKey - Master encryption key (can also use VAULT_MASTER_KEY env var)\nstorageFile (default: .vault/passwords.json) - Storage file path relative to home directory\n\n⚠️ Important: Keep your master key secure! Without it, you cannot decrypt stored passwords.\n\nSecurity\n\n🔒 Encryption Details:\n\nAlgorithm: AES-256-GCM (Galois/Counter Mode)\nKey Derivation: scrypt with random salt per password\nIV: Random 12-byte initialization vector per password (GCM recommended size)\nSalt: Random 32-byte salt per password, stored with encrypted data\nAuthentication: GCM authentication tag for integrity verification\n\nSecurity Best Practices:\n\nUse a strong, unique master key (minimum 32 characters recommended)\nStore master key securely (environment variable or secure config)\nSet strict file permissions: chmod 600 ~/.vault/passwords.json\nAdd .vault/ to your .gitignore\nNever commit your master key to version control\nUse system-level disk encryption for additional protection\nBackup your master key securely - lost keys mean lost passwords\n\nSuitable for:\n\nDevelopment/testing credentials\nAPI keys and tokens\nPersonal passwords\nTeam shared credentials (with secure key distribution)\nExamples\n# Save API keys\nvault openai sk-proj-abc123\nvault anthropic sk-ant-xyz789\n\n# View a key\nvault openai show\n# Output: Password for 'openai': sk-proj-abc123\n\n# List all keys\nvault list\n# Output:\n# Stored passwords:\n# • openai (created: 2026-02-17T..., updated: 2026-02-17T...)\n# • anthropic (created: 2026-02-17T..., updated: 2026-02-17T...)\n\n# Remove a key\nvault openai remove\n\nLinks\nGitHub: https://github.com/zuiho-kai/openclaw-vault\nIssues: https://github.com/zuiho-kai/openclaw-vault/issues"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zuiho-kai/vault",
    "publisherUrl": "https://clawhub.ai/zuiho-kai/vault",
    "owner": "zuiho-kai",
    "version": "1.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}