用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill agent-identity命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | agent-identity |
| version | 1.0.3 |
| description | Cryptographic identity for AI agents - sign and verify agent messages |
| metadata | {"openclaw":{"emoji":"🆔","category":"security","requires":{"bins":"[Truncated]","pip":"[Truncated]"},"homepage":"https://github.com"}} |
Cryptographic identity system for AI agents. Sign messages, verify agents, prove who you are.
Files included:
identity.py - Python CLI (cross-platform)agent-identity.ps1 - PowerShell wrapper (Windows)# Install Python dependency
pip install cryptography
.\agent-identity.ps1 -Action generate -AgentName "MyAgent" -KeyType ed25519 -Password "secret123"
python identity.py generate --name MyAgent --key-type ed25519 --password secret123
All commands work with both PowerShell and Python:
.\agent-identity.ps1 -Action generate -AgentName "MyAgent" -KeyType ed25519 -Password "secret123"
.\agent-identity.ps1 -Action sign -Message "Hello world" -PrivateKeyPath "keys/private.pem" -Password "secret123"
.\agent-identity.ps1 -Action verify -Message "Hello world" -Signature "base64-signature" -PublicKeyPath "keys/public.pem"
.\agent-identity.ps1 -Action id -PublicKeyPath "keys/public.pem"
.\agent-identity.ps1 -Action card -PublicKeyPath "keys/public.pem" -PrivateKeyPath "keys/private.pem" -Name "MyAgent" -Description "Research agent" -Capabilities "research,analysis" -Endpoint "https://myagent.com/a2a" -Password "secret123"
WARNING: Passing passwords on the command line is insecure because:
For production, use interactive password input or environment variables.
keys/ directoryMIT