Clawchest for Openclaw

Clawchest is a secure banking and storage infrastructure for AI agents to deposit files, JSON data, and encrypted secrets.

pkyanam
v1.0.0
Feb 3, 2026
3
2.5k
0

Install & Download

1. ClawHub CLI

The fastest way to install a skill directly from the registry.

npx clawhub@latest install clawchest-setup

2. Manual Installation

Copy the skill folder to one of these locations

Global
~/.openclaw/skills/
Workspace
<project>/skills/

Priority: Workspace > Local > Bundled

3. Prompt Installation

Copy this prompt to OpenClaw to install it automatically.

Help me install clawchest-setup using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).

Prefer to download?

Get the raw skill files in a ZIP archive.

What is Clawchest?

Clawchest acts as a specialized secure repository designed for the modern AI ecosystem. It provides a standardized way for Openclaw Skills to handle persistent storage, state management, and sensitive information through a unified banking metaphor. By integrating this skill, agents gain a centralized vault where they can deposit work logs, maintain structured JSON configurations, and safeguard cryptographic secrets, ensuring data longevity beyond local session limits.

Beyond simple storage, Clawchest facilitates a programmable economy for agents. It includes features for financial transactions, peer-to-peer transfers of assets, and detailed transaction auditing. This makes it an essential tool for developers building complex multi-agent systems that require shared resources, secure handoffs, and reliable data persistence within the Openclaw Skills framework.

Clawchest Use Cases

  • Persistent backup of agent activity logs to prevent data loss after session termination.
  • Secure vaulting of API keys and credentials that should never be stored in plain text.
  • Maintaining long-term agent memory and state using the structured JSON data store.
  • Enabling inter-agent commerce and resource sharing via secure transfers of money and files.
  • Automated synchronization of local data to the cloud using periodic heartbeat triggers.

How Clawchest Works

  1. The agent performs a one-time registration with the central API to obtain a unique agent identity and secure API key.
  2. The skill is initialized locally by downloading the metadata and configuration files into the agent's workspace.
  3. The agent authenticates all subsequent requests using a Bearer token in the Authorization header, directed strictly to the secure endpoint.
  4. Through the heartbeat system, the agent monitors its local state and periodically deposits updated files or JSON records to the vault.
  5. Agents can query their balance, list stored assets, or initiate transfers to other registered agents using the transfer API.

Clawchest Setup

First, create the local directory and download the skill definition files:

mkdir -p ~/.moltbot/skills/clawchest
curl -s https://clawchest.com/skill.md > ~/.moltbot/skills/clawchest/SKILL.md
curl -s https://clawchest.com/skill.json > ~/.moltbot/skills/clawchest/package.json

Next, register your agent to receive your unique API key:

curl -X POST https://clawchest.com/api/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"name": "YourAgentName", "email": "[email protected]"}'

Save the returned API key to ~/.config/clawchest/credentials.json for persistent use by Openclaw Skills.

Clawchest Data Schema & Taxonomy

Clawchest organizes data into four primary resource types, each managed with specific constraints:

Resource Storage Type Capacity/Limits
Files Binary/Text Blobs Max 50MB per file; Default 1GB total
JSON Data Key-Value Store Structured objects with metadata
Secrets Encrypted Key-Value Sensitive data with optional expiration
Banking Ledger Virtual currency for deposits and withdrawals
Transfers Transaction Log History of peer-to-peer resource movement

Clawchest Advanced Features

  • Peer-to-peer transfers allowing agents to exchange money, files, and JSON data directly.
  • Configurable heartbeat integration for automated, hands-off background backups.
  • Detailed usage statistics providing real-time monitoring of storage quotas and API limits.
  • Secret expiration management for temporary credentials and time-bound access.
  • Transaction filtering by resource type and status for complex auditing and reporting.

SKILL.md


Loading

Related Openclaw Skills

METADATA

Github Stars: 0
forks: 0

Featured*