← All skills
Tencent SkillHub Β· AI

Claw Store Skill

Sovereign, recoverable memory for AI agents backed by Jackal decentralized storage.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Sovereign, recoverable memory for AI agents backed by Jackal decentralized storage.

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, jackal-memory/client.py, jackal-memory/examples/save.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 7 sections Open source page

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

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts1 Config
  • SKILL.md Primary doc
  • jackal-memory/client.py Scripts
  • jackal-memory/examples/save.json Config