A professional-grade backup solution that uses git-crypt to securely sync sensitive Clawdbot workspace and configuration data to GitHub repositories.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install git-crypt-backup
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install git-crypt-backup using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Git-Crypt Backup skill is designed to provide a secure, version-controlled bridge between your local AI agent environment and remote storage. By utilizing git-crypt, it ensures that highly sensitive files—such as identity markers, memory logs, and API credentials—are encrypted before they ever leave your local machine. This approach allows developers to leverage the convenience of GitHub for backups without compromising the privacy of their agent's internal state.
As part of the wider ecosystem of Openclaw Skills, this tool integrates deeply with the Clawdbot file structure. It separates data into encrypted and plaintext categories based on sensitivity, ensuring that while your core logic remains searchable or visible if desired, your private keys and personal agent memories remain strictly confidential. This is an essential skill for developers running persistent AI agents across multiple environments.
Create two private repositories on GitHub named clawdbot-workspace and clawdbot-config.
Install the tool and initialize your directories:
# Install git-crypt
brew install git-crypt
# Initialize Workspace
cd ~/clawd
git init
git-crypt init
git remote add origin [email protected]:<username>/clawdbot-workspace.git
Create a .gitattributes file in ~/clawd to protect sensitive files:
SOUL.md filter=git-crypt diff=git-crypt
USER.md filter=git-crypt diff=git-crypt
MEMORY.md filter=git-crypt diff=git-crypt
memory/** filter=git-crypt diff=git-crypt
Export your keys to a safe location (e.g., a password manager):
mkdir -p ~/clawdbot-keys
cd ~/clawd && git-crypt export-key ~/clawdbot-keys/workspace.key
The skill organizes data into two distinct repositories to separate core workspace data from system-level configurations. Encryption is applied selectively based on the following taxonomy:
| Repository | Encrypted Files (Private) | Plaintext Files (Public/Metadata) |
|---|---|---|
| Workspace | SOUL.md, USER.md, MEMORY.md, memory/ | AGENTS.md, IDENTITY.md, TOOLS.md, drafts/ |
| Config | clawdbot.json, .env, credentials/, sessions/ | cron/jobs.json, settings/ |
Loading
Aiqbee Brain enables your AI assistant to interact with complex knowledge graphs for architecture, portfolio, and digital strategy management.

An automated archive and retrieval tool for Openclaw Skills that fetches recent messages from all accessible Discord channels for offline search and indexing.

A natural language reminder system that automates cron job creation and maintains a transparent markdown-based history of all scheduled tasks.

A specialized tool for querying and managing internal workspace policy documents through a structured CLI interface.

An AI-powered skill that translates natural language questions into precise SQL queries and actionable data insights.

A high-efficiency news scraper designed to fetch and format the latest financial flash updates from Futu official website.








































