Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

clawco-clawdna克拉夫科·克拉德纳

Agent Skill

clawco-clawdna 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,563

周安装

194

GitHub Stars

公开资料未说明

下载量

1,599
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:clawco-clawdna(克拉夫科·克拉德纳)
来源仓库:https://github.com/gitpcl/clawco-clawdna
安装命令:
openclaw skills install clawco-clawdna
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install clawco-clawdna

简介

CLI 工具可对您的 OpenClaw 代理身份文件进行版本控制、快照和同步,确保备份并防止数据丢失或身份漂移。

SKILL.md

slug
clawco-clawdna
name
ClawDNA -- Identity Backup & Sync
version
1.0.0
tags
[backup, sync, identity, version-control]
license
MIT-0
min_openclaw
2026.1
source
https://github.com/clawco-io/clawdna/tree/main/packages/skill
homepage
https://github.com/clawco-io/clawdna#readme
repository
https://github.com/clawco-io/clawdna.git
env
CLAWDNA_HUB_TOKEN
description
Authentication token for ClawDNA Hub sync operations (push/pull/clone)
required
false

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-<change>" 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 <id> to pull the full identity from hub
  2. Rollback: clawdna restore --bundle <path> to revert to a previous snapshot
  3. Diagnose: clawdna doctor to check installation health and hub connectivity

CLI Command Reference

Core Commands

CommandWhat it does
clawdna initInteractive setup -- detects your workspace and configures the hub (Cloud, Git, or local)
clawdna snapshot [--name <name>]Creates a timestamped .dna bundle of all identity files
clawdna restore --bundle <path> [--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 logDisplays identity change history with timestamps

Sync Commands

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

Management Commands

CommandWhat 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 showDisplays the current contents of MEMORY.md
`clawdna daemon start\stop\status`Background sync daemon -- watches for changes and auto-pushes
clawdna doctorHealth check -- verifies config, permissions, hub connectivity, and OpenClaw state
clawdna upgrade [--channel <ch>]Safe OpenClaw upgrade -- snapshots before, verifies identity after, offers rollback

What Gets Backed Up

ClawDNA manages these identity files from your OpenClaw workspace:

FilePurpose
SOUL.mdPersonality, values, and behavioral rules
AGENTS.mdWorkspace conventions and operating rules
IDENTITY.mdHow the agent presents itself
MEMORY.mdAccumulated knowledge about the user
TOOLS.mdInstalled skills and tool configurations
USER.mdUser-specific context and preferences
openclaw.jsonRuntime 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-<version>.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/.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.31%
按下载量换算1,316

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills