{
  "schemaVersion": "1.0",
  "item": {
    "slug": "a2a-vault",
    "name": "A2A Vault",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/Paparusi/a2a-vault",
    "canonicalUrl": "https://clawhub.ai/Paparusi/a2a-vault",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/a2a-vault",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=a2a-vault",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/a2a-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/a2a-vault",
    "agentPageUrl": "https://openagent3.xyz/skills/a2a-vault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/a2a-vault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/a2a-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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "A2A Vault (PassBox)",
        "body": "Zero-knowledge secrets management. Store API keys, tokens, and credentials with client-side encryption. The server never sees plaintext values."
      },
      {
        "title": "Quick Start",
        "body": "Store a secret:\n\nUse passbox_set_secret with vault \"my-project\", key \"API_KEY\", value \"sk-abc123\"\n\nRetrieve a secret:\n\nUse passbox_get_secret with vault \"my-project\", key \"API_KEY\""
      },
      {
        "title": "Secret Operations",
        "body": "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"
      },
      {
        "title": "Vault Management",
        "body": "ToolDescriptionpassbox_list_vaultsList all available vaultspassbox_list_environmentsList environments (dev, staging, prod)passbox_get_environmentGet all secrets in an environment"
      },
      {
        "title": ".env Integration",
        "body": "ToolDescriptionpassbox_diff_envCompare local .env with vault secretspassbox_import_envImport .env file into vault"
      },
      {
        "title": "Set up project credentials",
        "body": "passbox_list_vaults — see existing vaults\npassbox_set_secret — store each credential\npassbox_list_secrets — verify all keys are stored"
      },
      {
        "title": "Sync .env with vault",
        "body": "Read your local .env file\npassbox_diff_env — see what's different\npassbox_import_env — push local secrets to vault"
      },
      {
        "title": "Environment promotion",
        "body": "passbox_get_environment for \"dev\"\nReview values\npassbox_set_secret for each key in \"staging\""
      },
      {
        "title": "Credential injection",
        "body": "Use with a2a_secure_execute to automatically inject secrets:\n\nUse a2a_secure_execute with toolId \"my-api-tool\" and input { \"apiKey\": \"{{API_KEY}}\" }, vault \"my-project\"\n\nThe {{API_KEY}} placeholder is resolved from PassBox before execution."
      },
      {
        "title": "Security Model",
        "body": "Client-side encryption: Values are encrypted before leaving your device\nZero-knowledge: The server stores only ciphertext\nEnvironment isolation: dev/staging/prod secrets are fully separated\nAudit trail: All access is logged\nSecret rotation: Built-in rotation support with webhooks"
      }
    ],
    "body": "A2A Vault (PassBox)\n\nZero-knowledge secrets management. Store API keys, tokens, and credentials with client-side encryption. The server never sees plaintext values.\n\nQuick Start\n\nStore a secret:\n\nUse passbox_set_secret with vault \"my-project\", key \"API_KEY\", value \"sk-abc123\"\n\n\nRetrieve a secret:\n\nUse passbox_get_secret with vault \"my-project\", key \"API_KEY\"\n\nAvailable Tools\nSecret Operations\nTool\tDescription\npassbox_get_secret\tRetrieve and decrypt a secret\npassbox_set_secret\tCreate or update a secret (encrypted before upload)\npassbox_list_secrets\tList secret names (values not returned)\npassbox_delete_secret\tDelete a secret\npassbox_rotate_secret\tTrigger manual secret rotation\nVault Management\nTool\tDescription\npassbox_list_vaults\tList all available vaults\npassbox_list_environments\tList environments (dev, staging, prod)\npassbox_get_environment\tGet all secrets in an environment\n.env Integration\nTool\tDescription\npassbox_diff_env\tCompare local .env with vault secrets\npassbox_import_env\tImport .env file into vault\nWorkflows\nSet up project credentials\npassbox_list_vaults — see existing vaults\npassbox_set_secret — store each credential\npassbox_list_secrets — verify all keys are stored\nSync .env with vault\nRead your local .env file\npassbox_diff_env — see what's different\npassbox_import_env — push local secrets to vault\nEnvironment promotion\npassbox_get_environment for \"dev\"\nReview values\npassbox_set_secret for each key in \"staging\"\nCredential injection\n\nUse with a2a_secure_execute to automatically inject secrets:\n\nUse a2a_secure_execute with toolId \"my-api-tool\" and input { \"apiKey\": \"{{API_KEY}}\" }, vault \"my-project\"\n\n\nThe {{API_KEY}} placeholder is resolved from PassBox before execution.\n\nSecurity Model\nClient-side encryption: Values are encrypted before leaving your device\nZero-knowledge: The server stores only ciphertext\nEnvironment isolation: dev/staging/prod secrets are fully separated\nAudit trail: All access is logged\nSecret rotation: Built-in rotation support with webhooks"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Paparusi/a2a-vault",
    "publisherUrl": "https://clawhub.ai/Paparusi/a2a-vault",
    "owner": "Paparusi",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/a2a-vault",
    "downloadUrl": "https://openagent3.xyz/downloads/a2a-vault",
    "agentUrl": "https://openagent3.xyz/skills/a2a-vault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/a2a-vault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/a2a-vault/agent.md"
  }
}