# Send Archon Vault to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "archon-vault",
    "name": "Archon Vault",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/macterra/archon-vault",
    "canonicalUrl": "https://clawhub.ai/macterra/archon-vault",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/archon-vault",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=archon-vault",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/backup/backup-to-vault.sh",
      "scripts/backup/disaster-recovery.sh",
      "scripts/backup/restore-from-vault.sh",
      "scripts/backup/verify-backup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "archon-vault",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:28:53.306Z",
      "expiresAt": "2026-05-06T03:28:53.306Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=archon-vault",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=archon-vault",
        "contentDisposition": "attachment; filename=\"archon-vault-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "archon-vault"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/archon-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/archon-vault",
    "downloadUrl": "https://openagent3.xyz/downloads/archon-vault",
    "agentUrl": "https://openagent3.xyz/skills/archon-vault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/archon-vault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/archon-vault/agent.md"
  }
}
```
## Documentation

### Archon Vault - Encrypted Distributed Storage

Manage DID vaults and backup/restore files. Data is encrypted client-side before transmission — only you (or vault members) can decrypt.

### Prerequisites

Archon identity configured (~/.archon.env with wallet path and passphrase)
Run archon-keymaster first to create your DID if you don't have one

### Backup Workspace to Vault

./scripts/backup/backup-to-vault.sh [vault-did]

Archives ~/clawd and ~/.openclaw to your encrypted vault. Respects .backup-ignore files.

### Restore from Vault

./scripts/backup/restore-from-vault.sh <backup-did> [target-dir]

### Verify Backup Integrity

./scripts/backup/verify-backup.sh <backup-did>

### Disaster Recovery

./scripts/backup/disaster-recovery.sh

Full recovery procedure with mnemonic.

### Create Vault

./scripts/vaults/create-vault.sh <vault-name>

### Add/Remove Items

./scripts/vaults/add-vault-item.sh <vault-did> <item-did>
./scripts/vaults/remove-vault-item.sh <vault-did> <item-did>
./scripts/vaults/get-vault-item.sh <vault-did> <item-did>
./scripts/vaults/list-vault-items.sh <vault-did>

### Manage Vault Members (Multi-Party Access)

./scripts/vaults/add-vault-member.sh <vault-did> <member-did>
./scripts/vaults/remove-vault-member.sh <vault-did> <member-did>
./scripts/vaults/list-vault-members.sh <vault-did>

### Security Notes

Backup scope: Archives ~/clawd and ~/.openclaw by default. Review .backup-ignore to exclude sensitive items.


Encryption: All data encrypted before transmission to Archon gatekeeper/hyperswarm.


Vault members: Adding a member grants them decrypt access to vault contents.


Recovery: Your 12-word mnemonic is the master key. Store it offline.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: macterra
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T03:28:53.306Z
- Expires at: 2026-05-06T03:28:53.306Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/archon-vault)
- [Send to Agent page](https://openagent3.xyz/skills/archon-vault/agent)
- [JSON manifest](https://openagent3.xyz/skills/archon-vault/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/archon-vault/agent.md)
- [Download page](https://openagent3.xyz/downloads/archon-vault)