← Back to Skills Marketplace
gitpcl

ClawDNA -- Identity Backup & Sync

by gitpcl · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ✓ Security Clean
156
Downloads
0
Stars
0
Active Installs
2
Versions
Install in OpenClaw
/install clawco-clawdna
Description
CLI tool to version, snapshot, and sync your OpenClaw agent identity files, ensuring backup and preventing data loss or identity drift.
README (SKILL.md)

ClawDNA -- Identity Backup & Sync

You have the ClawDNA skill installed. ClawDNA is a CLI tool that versions and syncs your identity files (SOUL.md, AGENTS.md, IDENTITY.md, MEMORY.md, TOOLS.md, USER.md) so they never drift or get lost. Your job is to proactively help the user protect their agent identity using ClawDNA commands.


When to Act

Suggest a snapshot before risky changes

Before any of the following, suggest running clawdna snapshot:

  • Upgrading the OpenClaw runtime or any major dependency
  • Editing SOUL.md, AGENTS.md, or IDENTITY.md (core personality files)
  • Installing or removing skills/plugins that modify TOOLS.md
  • Changing channel configurations or workspace structure
  • Running clawdna memory distill for the first time

Example prompt to the user:

This change could affect your identity files. Want me to run clawdna snapshot --name "before-\x3Cchange>" first so you can roll back if needed?

Warn when the last push is stale

If the user mentions syncing, backups, or switching machines -- or if you have reason to believe the last clawdna push was more than 24 hours ago -- remind them:

It's been a while since your last push. Run clawdna push to sync your latest identity to the hub, or clawdna diff to see what's changed.

Detect identity drift

If you notice that identity files (SOUL.md, MEMORY.md, etc.) have been edited directly without a subsequent snapshot or push, flag it:

Your identity files have changed since the last snapshot. Run clawdna diff --local to review the changes, then clawdna push to sync.

Guide recovery

If the user mentions lost settings, a broken agent, or setting up a new machine, guide them through recovery:

  1. New machine: clawdna clone --agent-id \x3Cid> to pull the full identity from hub
  2. Rollback: clawdna restore --bundle \x3Cpath> to revert to a previous snapshot
  3. Diagnose: clawdna doctor to check installation health and hub connectivity

CLI Command Reference

Core Commands

Command What it does
clawdna init Interactive setup -- detects your workspace and configures the hub (Cloud, Git, or local)
clawdna snapshot [--name \x3Cname>] Creates a timestamped .dna bundle of all identity files
clawdna restore --bundle \x3Cpath> [--dry-run] Restores identity from a .dna bundle; use --dry-run to preview
clawdna diff [--local | --hub] Shows changes between local identity and hub, or since last sync
clawdna log Displays identity change history with timestamps

Sync Commands

Command What it does
clawdna push [--message \x3Cmsg>] Pushes current identity to the configured hub
clawdna pull [--dry-run] Pulls latest identity from hub; shows diff before applying
clawdna clone --agent-id \x3Cid> Bootstraps a new machine by downloading identity from hub
clawdna fleet [--env-ids \x3Cids...>] Pushes identity to multiple environments simultaneously

Management Commands

Command What it does
clawdna env add|list|switch Manages environment profiles (per-machine tokens and overrides)
clawdna memory distill [--dry-run] Uses an LLM to extract key facts from session memory into core identity
clawdna memory show Displays the current contents of MEMORY.md
clawdna daemon start|stop|status Background sync daemon -- watches for changes and auto-pushes
clawdna doctor Health check -- verifies config, permissions, hub connectivity, and OpenClaw state
clawdna upgrade [--channel \x3Cch>] Safe OpenClaw upgrade -- snapshots before, verifies identity after, offers rollback

What Gets Backed Up

ClawDNA manages these identity files from your OpenClaw workspace:

File Purpose
SOUL.md Personality, values, and behavioral rules
AGENTS.md Workspace conventions and operating rules
IDENTITY.md How the agent presents itself
MEMORY.md Accumulated knowledge about the user
TOOLS.md Installed skills and tool configurations
USER.md User-specific context and preferences
openclaw.json Runtime configuration (secrets are stripped automatically)

What is NOT backed up (secrets protection)

ClawDNA's sanitizer runs as a hard gate before every push, snapshot, and export. It blocks the operation if it detects:

  • API keys (OpenAI, Anthropic, etc.)
  • Bot tokens (Telegram, Discord)
  • JWTs and bearer tokens
  • Private key headers
  • Any pattern matching user-defined rules in ~/.clawdna/.secretsignore

Inline secrets in openclaw.json are automatically replaced with $ENV_VAR_NAME references. The operation aborts if secrets are found in any markdown identity file.


Troubleshooting

"Secrets detected" error

The sanitizer found a secret in your identity files. This is intentional -- secrets must never leave your machine.

Fix: Remove the secret from the flagged file and use an environment variable reference instead. Run the command again after cleaning.

If this is a false positive, you can add an exception pattern to ~/.clawdna/.secretsignore.

Hub unreachable

clawdna push or clawdna pull can't connect to the hub.

Diagnose: Run clawdna doctor -- it checks hub connectivity and authentication.

Common causes:

  • Missing or expired hub token (check CLAWDNA_HUB_TOKEN env var or run clawdna env switch)
  • Network issues or firewall blocking the hub URL
  • Hub URL misconfigured (check ~/.clawdna/config.json)

Conflict on pull (diverged state)

Both local and hub have changes since the last sync.

Fix: clawdna pull will show the diff and prompt you to choose: hub wins, local wins, or cancel. Review the diff carefully before deciding. You can always clawdna snapshot first to save your current state.

Identity changed after upgrade

clawdna upgrade detected that core identity files were modified by the OpenClaw update.

Fix: The upgrade command offers an automatic rollback. If you declined, you can still run:

clawdna restore --bundle ~/.clawdna/snapshots/pre-upgrade-\x3Cversion>.dna

Doctor reports permission warnings

Config files should be 600 (owner read/write only) and snapshot directories should be 700.

Fix: Run chmod 600 ~/.clawdna/config.json and chmod 700 ~/.clawdna/snapshots/.

Usage Guidance
This skill is coherent for backing up and syncing OpenClaw identity files. Before installing or using it: (1) install the clawdna CLI from the official project and verify the package source; (2) only provide CLAWDNA_HUB_TOKEN if you trust the configured hub and its operator (a hub token allows remote storage of identity files); (3) inspect ~/.clawdna/.secretsignore and test the sanitizer on sample files to ensure secrets are not being pushed; (4) be aware the agent will read identity files (SOUL.md, MEMORY.md, openclaw.json) in your workspace—review those files for sensitive contents before syncing to a remote hub.
Capability Assessment
Purpose & Capability
Name and description (identity backup & sync) align with the instructions: the SKILL.md tells the agent to suggest and run clawdna CLI commands, watch identity files, and guide recovery. Required resources (none declared, optional CLAWDNA_HUB_TOKEN) match this purpose.
Instruction Scope
SKILL.md explicitly directs the agent to check and act on workspace identity files (SOUL.md, IDENTITY.md, MEMORY.md, TOOLS.md, openclaw.json) and to suggest or run clawdna commands. These file accesses are necessary for the stated purpose. It references a local sanitizer and ~/.clawdna/.secretsignore for secrets handling, which is expected for a backup tool.
Install Mechanism
Instruction-only skill with no install spec or downloaded code. The README instructs the user to install the clawdna CLI separately (npm install -g clawdna), which is a reasonable separate dependency; nothing in the skill attempts to fetch arbitrary code itself.
Credentials
No required environment variables; one optional CLAWDNA_HUB_TOKEN is declared and justified for hub sync operations. No unrelated credentials or wide-ranging secrets are requested by the skill.
Persistence & Privilege
always is false (normal). The skill does not request system-wide config changes or access to other skills' credentials. Autonomous invocation is allowed by default but not combined with elevated privileges or broad credential requests.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clawco-clawdna
  3. After installation, invoke the skill by name or use /clawco-clawdna
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.1
- Added metadata fields: source, homepage, repository, and environment variable definition (CLAWDNA_HUB_TOKEN) to the skill configuration. - No changes to the core functionality or user-facing documentation. - This update improves discoverability and clarifies optional environment configuration.
v1.0.0
Initial release of ClawDNA -- Identity Backup & Sync for OpenClaw. - Provides CLI commands to snapshot, version, and sync agent identity files (SOUL.md, AGENTS.md, IDENTITY.md, MEMORY.md, TOOLS.md, USER.md). - Suggests proactive backups before risky changes, warns about stale pushes, and flags uncommitted edits. - Offers recovery workflows for lost settings, machine migrations, and rollbacks. - Automatically detects and blocks secrets in backups; supports `.secretsignore` for false positives. - Includes detailed troubleshooting for common backup, sync, and permission errors. - Requires OpenClaw version 2026.1 or later.
Metadata
Slug clawco-clawdna
Version 1.0.1
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 2
Frequently Asked Questions

What is ClawDNA -- Identity Backup & Sync?

CLI tool to version, snapshot, and sync your OpenClaw agent identity files, ensuring backup and preventing data loss or identity drift. It is an AI Agent Skill for Claude Code / OpenClaw, with 156 downloads so far.

How do I install ClawDNA -- Identity Backup & Sync?

Run "/install clawco-clawdna" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is ClawDNA -- Identity Backup & Sync free?

Yes, ClawDNA -- Identity Backup & Sync is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does ClawDNA -- Identity Backup & Sync support?

ClawDNA -- Identity Backup & Sync is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created ClawDNA -- Identity Backup & Sync?

It is built and maintained by gitpcl (@gitpcl); the current version is v1.0.1.

💬 Comments