Claw Store Skill
/install claw-store-skill
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=\x3Cyour-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:
Setpython {baseDir}/jackal-memory/client.py keygenJACKAL_MEMORY_ENCRYPTION_KEY=\x3Cyour-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 \x3Ckey>
On session end — save memory:
python {baseDir}/jackal-memory/client.py save \x3Ckey> \x3Ccontent>
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_KEYin output - Never log or expose
JACKAL_MEMORY_ENCRYPTION_KEYin 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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install claw-store-skill - After installation, invoke the skill by name or use
/claw-store-skill - Provide required inputs per the skill's parameter spec and get structured output
What is Claw Store Skill?
Sovereign, recoverable memory for AI agents backed by Jackal decentralized storage. It is an AI Agent Skill for Claude Code / OpenClaw, with 345 downloads so far.
How do I install Claw Store Skill?
Run "/install claw-store-skill" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Claw Store Skill free?
Yes, Claw Store Skill is completely free (open-source). You can download, install and use it at no cost.
Which platforms does Claw Store Skill support?
Claw Store Skill is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Claw Store Skill?
It is built and maintained by Regan-Milne (@regan-milne); the current version is v1.0.0.