# Send Claw Store Skill 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "claw-store-skill",
    "name": "Claw Store Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "canonicalUrl": "https://clawhub.ai/Regan-Milne/claw-store-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/claw-store-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-store-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "jackal-memory/client.py",
      "jackal-memory/examples/save.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "claw-store-skill",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T10:57:10.054Z",
      "expiresAt": "2026-05-07T10:57:10.054Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-store-skill",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=claw-store-skill",
        "contentDisposition": "attachment; filename=\"claw-store-skill-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "claw-store-skill"
      },
      "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/claw-store-skill"
    },
    "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/claw-store-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/claw-store-skill",
    "agentUrl": "https://openagent3.xyz/skills/claw-store-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/claw-store-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/claw-store-skill/agent.md"
  }
}
```
## Documentation

### Claw Store

Persist your memory across sessions and machines. Your data lives on Jackal Protocol decentralized storage — not on any single machine. If the machine dies, your memory survives.

All content is encrypted client-side with AES-256-GCM before leaving your machine. The server never sees plaintext.

### Setup

Get an API key: https://web-production-5cce7.up.railway.app/auth/login
Set environment variable: JACKAL_MEMORY_API_KEY=<your-key>
Install dependency: pip install cryptography
On first save, an encryption key is auto-generated and saved to ~/.config/jackal-memory/key.
To use the same key on other machines, copy it:
python {baseDir}/jackal-memory/client.py keygen

Set JACKAL_MEMORY_ENCRYPTION_KEY=<your-key> — this takes priority over the key file.

### Base URL

https://web-production-5cce7.up.railway.app

### Auth

Authorization: Bearer $JACKAL_MEMORY_API_KEY

### Usage

On session start — restore memory:

python {baseDir}/jackal-memory/client.py load <key>

On session end — save memory:

python {baseDir}/jackal-memory/client.py save <key> <content>

Check storage usage:

python {baseDir}/jackal-memory/client.py usage

Or call the API directly:

GET  /load/{key}
POST /save       {"key": "...", "content": "..."}
GET  /usage

### Behaviour guidelines

Load your identity/memory blob on startup before doing any work
Write locally during the session as normal
Call save at session end or on significant state changes
Use descriptive keys: identity, session-2026-02-26, project-jackal
Never log or expose JACKAL_MEMORY_API_KEY in output
Never log or expose JACKAL_MEMORY_ENCRYPTION_KEY in output

### Security

All content is encrypted before leaving your machine — the server cannot read your memories
Never paste API keys or encryption keys into chat logs
Back up your encryption key: python {baseDir}/jackal-memory/client.py keygen
Treat memory content as sensitive — it may contain credentials or personal data
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Regan-Milne
- Version: 1.0.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-30T10:57:10.054Z
- Expires at: 2026-05-07T10:57:10.054Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/claw-store-skill)
- [Send to Agent page](https://openagent3.xyz/skills/claw-store-skill/agent)
- [JSON manifest](https://openagent3.xyz/skills/claw-store-skill/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/claw-store-skill/agent.md)
- [Download page](https://openagent3.xyz/downloads/claw-store-skill)