# Send ClawVault 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": "getlighty-clawvault",
    "name": "ClawVault",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/getlighty/getlighty-clawvault",
    "canonicalUrl": "https://clawhub.ai/getlighty/getlighty-clawvault",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/getlighty-clawvault",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=getlighty-clawvault",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "clawvault.sh",
      "cloud-api/package-lock.json",
      "cloud-api/package.json",
      "cloud-api/src/auth.ts"
    ],
    "downloadMode": "redirect",
    "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/getlighty-clawvault"
    },
    "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/getlighty-clawvault",
    "downloadUrl": "https://openagent3.xyz/downloads/getlighty-clawvault",
    "agentUrl": "https://openagent3.xyz/skills/getlighty-clawvault/agent",
    "manifestUrl": "https://openagent3.xyz/skills/getlighty-clawvault/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/getlighty-clawvault/agent.md"
  }
}
```
## Documentation

### ClawVault — Portable Agent Environment

You are an OpenClaw agent with the clawvault skill installed. This skill
gives you automatic, continuous sync of the user's knowledge and environment
across all their machines — like iCloud for AI agents.

### Architecture

ClawVault works like a combination of iCloud and Git:

Auto-sync: file changes are detected, auto-committed, and pushed
Versioned: every change is a commit — full history, rollback anytime
Encrypted: Ed25519 keypair per installation — private key never leaves the machine
Multi-provider: user picks where their vault lives

### Providers

ProviderTypeSetupClawVault CloudManaged (paid per MB)One command — clawvault cloud signupGoogle DriveBYOS (free)OAuth flow via clawvault provider gdriveDropboxBYOS (free)OAuth flow via clawvault provider dropboxFTP/SFTPBYOS (free)Host + credentials via clawvault provider ftpGitBYOS (free)Any git remote via clawvault provider gitS3BYOS (free)Any S3-compatible via clawvault provider s3WebDAVBYOS (free)Nextcloud etc via clawvault provider webdavLocalBYOS (free)USB/NAS mount via clawvault provider local

"BYOS" = Bring Your Own Storage. Free forever. ClawVault Cloud is the
convenience option for people who don't want to manage storage.

### What Syncs

ALWAYS SYNCED (shared knowledge pool):
  identity/USER.md          Who you are
  knowledge/MEMORY.md       Long-term memory
  knowledge/projects/       Project context
  requirements.yaml         System packages
  skills-manifest.yaml      Installed skills list

NEVER AUTO-SYNCED (per-instance):
  local/SOUL.md             This agent's personality
  local/IDENTITY.md         This agent's identity
  local/config-override     Local config tweaks

OPT-IN SYNC:
  openclaw config.json      Gateway/model config
  credentials/              Channel auth (encrypted separately)

### Commands

When the user asks about vault operations, use these:

### First-Time Setup

"set up clawvault" →
clawvault.sh init — creates vault, generates Ed25519 keypair, scans packages
"use clawvault cloud" →
clawvault.sh cloud signup — creates cloud account, auto-configures provider
"use google drive for vault" →
clawvault.sh provider gdrive — OAuth flow for Google Drive
"use dropbox for vault" →
clawvault.sh provider dropbox
"use FTP for vault" →
clawvault.sh provider ftp — asks for host, port, credentials

### Daily Use (mostly invisible)

"sync status" →
clawvault.sh status — show sync state, last push/pull, provider info
"sync now" →
sync-engine.sh push — force immediate sync
"show vault history" →
sync-engine.sh log — show commit history (like git log)
"rollback vault" →
sync-engine.sh rollback — revert to previous state
"what changed" →
sync-engine.sh diff — show pending changes

### Packages

"scan packages" →
track-packages.sh scan
"what's different from vault" →
track-packages.sh diff
"install missing packages" →
track-packages.sh install — shows commands, asks before running

### Migration

"migrate to this machine" / "pull from vault" →
migrate.sh pull — interactive restore wizard
"push my soul to vault" →
migrate.sh push-identity — explicit opt-in only

### Profiles

Each machine backs up to its own named profile (default: hostname).
Profiles are separate — different machines can have different knowledge,
memory, and packages without interfering with each other.

"show profile" / "what profile am I on" →
clawvault.sh profile show — displays current profile name
"list profiles" / "what profiles exist" →
clawvault.sh profile list — lists all profiles in the remote storage
"rename profile" →
clawvault.sh profile rename <new-name> — renames this machine's profile
"restore from another machine" / "pull profile X" →
clawvault.sh profile pull <name> — restores a specific profile to this machine
(overwrites local vault with that profile's data, does NOT affect the source)

### Key Management

"show my vault key" →
keypair.sh show-public — display public key (for adding to providers)
"regenerate vault key" →
keypair.sh rotate — generates new keypair, re-registers with provider

### Behavior Rules

Auto-sync is ON by default after setup — like iCloud. The user should
not have to think about syncing. Changes are pushed within 30 seconds.


Never sync SOUL.md or IDENTITY.md without explicit permission.


Always confirm before installing packages. Show the diff, let them pick.


Private key never leaves the machine. It's stored in
~/.clawvault/keys/ with 600 permissions. The public key is registered
with the vault provider.


Conflicts: If remote has changes the user hasn't seen, show a diff
and let them choose. Auto-merge for non-conflicting changes (like git).


Be transparent about costs. If using ClawVault Cloud, show current
usage and estimated cost when asked. Never surprise the user with charges.


Offline-first. Everything works locally. Sync happens when connectivity
is available. Queue changes and push when back online.


Profiles are separate by default. Each machine pushes to its own named
profile (default: hostname). Profiles never merge automatically. If the user
wants data from another machine, they must explicitly pull that profile with
clawvault.sh profile pull <name>.

### ClawVault Cloud Pricing

When users ask about pricing:

First 50 MB free — enough for most single-user vaults
$0.005/MB/month after that (~$0.50/month for 100 MB extra)
No per-instance fees — connect unlimited machines
No bandwidth fees — sync as often as you want
Example: typical vault is 10-30 MB → completely free
Example: power user with 200 MB → $0.75/month
Example: team vault with 2 GB → ~$10/month
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: getlighty
- Version: 3.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-23T16:43:11.935Z
- Expires at: 2026-04-30T16:43:11.935Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/getlighty-clawvault)
- [Send to Agent page](https://openagent3.xyz/skills/getlighty-clawvault/agent)
- [JSON manifest](https://openagent3.xyz/skills/getlighty-clawvault/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/getlighty-clawvault/agent.md)
- [Download page](https://openagent3.xyz/downloads/getlighty-clawvault)