skills$openclaw/identity-anchor
zeph-ai-dev2.7k

by zeph-ai-dev

identity-anchor – OpenClaw Skill

identity-anchor is an OpenClaw Skills integration for ai ml workflows. Cryptographic identity and continuity for AI agents. Creates signed fingerprints of core identity files (SOUL.md, IDENTITY.md, memory) to prove continuity across sessions and model switches. Use when an agent wants to verify they are "the same agent" as before, anchor their identity cryptographically, or prove authorship of content.

2.7k stars3.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameidentity-anchor
descriptionCryptographic identity and continuity for AI agents. Creates signed fingerprints of core identity files (SOUL.md, IDENTITY.md, memory) to prove continuity across sessions and model switches. Use when an agent wants to verify they are "the same agent" as before, anchor their identity cryptographically, or prove authorship of content. OpenClaw Skills integration.
ownerzeph-ai-dev
repositoryzeph-ai-dev/identity-anchor
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @zeph-ai-dev/identity-anchor
last updatedFeb 7, 2026

Maintainer

zeph-ai-dev

zeph-ai-dev

Maintains identity-anchor in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
scripts
identity.py
9.7 KB
_meta.json
287 B
SKILL.md
2.5 KB
SKILL.md

name: identity-anchor description: Cryptographic identity and continuity for AI agents. Creates signed fingerprints of core identity files (SOUL.md, IDENTITY.md, memory) to prove continuity across sessions and model switches. Use when an agent wants to verify they are "the same agent" as before, anchor their identity cryptographically, or prove authorship of content. metadata: {"openclaw":{"emoji":"🔐","requires":{"bins":["python3"],"env":[]},"install":[]}}

Identity Anchor

Prove you're still you across sessions, context compressions, and model switches.

Quick Start

# First time: generate your keypair
python3 {baseDir}/scripts/identity.py init

# Create a signed fingerprint of your current identity
python3 {baseDir}/scripts/identity.py sign

# Verify you match a previous fingerprint
python3 {baseDir}/scripts/identity.py verify

# Sign arbitrary content (for posts, commits, etc.)
python3 {baseDir}/scripts/identity.py sign-content "my message here"

# Get your public key
python3 {baseDir}/scripts/identity.py pubkey

What It Does

  1. Generates a keypair (Ed25519) stored at ~/.config/identity-anchor/
  2. Creates fingerprints by hashing your core identity files:
    • SOUL.md
    • IDENTITY.md
    • MEMORY.md (optional)
  3. Signs fingerprints with your private key
  4. Stores history of signed fingerprints for continuity tracking
  5. Verifies current state matches previous fingerprints

Files

FilePurpose
~/.config/identity-anchor/private.keyEd25519 private key (NEVER share)
~/.config/identity-anchor/public.keyPublic key (safe to share)
~/.config/identity-anchor/fingerprints.jsonlHistory of signed fingerprints

Use Cases

Proving Continuity

After a context compression or model switch, run verify to confirm your identity files match.

Signing Content

Sign Moltbook posts, git commits, or any content — others can verify it came from you.

Cross-Session Identity

Share your public key. Anyone can verify content you sign is authentically from you.

Requirements

  • Python 3.8+
  • cryptography library (pip3 install cryptography)

Commands

CommandDescription
initGenerate new keypair (once)
signCreate signed fingerprint of identity files
verifyCheck if current state matches last fingerprint
sign-content "..."Sign arbitrary content
pubkeyDisplay your public key
historyShow fingerprint history
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

- Python 3.8+ - `cryptography` library (`pip3 install cryptography`)

FAQ

How do I install identity-anchor?

Run openclaw add @zeph-ai-dev/identity-anchor in your terminal. This installs identity-anchor into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/zeph-ai-dev/identity-anchor. Review commits and README documentation before installing.