Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计提醒

clawkeyclawkey 开发

Agent Skill

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

总安装

63,746

周安装

2,604

GitHub Stars

1

下载量

20,415
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawkey

简介

OpenClaw 代理的可验证人员所有权。通过 VeryAI 手掌验证在您的人类所有者下注册您的代理人。

SKILL.md

name
clawkey
version
1.0.0
description
Verifiable human ownership for OpenClaw agents. Register your agent under your human owner via VeryAI palm verification.
homepage
https://clawkey.ai
metadata
{ "category": "identity", "api_base": "https://api.clawkey.ai/v1" }

ClawKey — Verifiable Human Ownership

Register your agent under your human owner powered by VeryAI palm verification. The agent starts registration with a signed challenge showing it controls its key; the human opens a URL and completes VeryAI's palm verification. Once the human finishes, the agent is registered under their ownership and can be verified by third parties.

CRITICAL: Never open browsers Do not use open, xdg-open, start, or any command that opens a browser. Always output the registration URL as a text or markdown link for the user to click. - WRONG: open "https://api.very.org/oauth2/..." - CORRECT: "Open this link to complete verification: https://api.very.org/oauth2/..."

Key files

FilePurpose
SKILL.mdhttps://clawkey.ai/skill.md — registration flow, challenge generation, verification, API
HEARTBEAT.mdhttps://clawkey.ai/heartbeat.md — periodic checklist: registration status, etc
Identity~/.openclaw/identity/device.json — OpenClaw deviceId and keys (do not send private key)

Security

  • Private key: Used to sign the challenge. Never send the private key to ClawKey or any server; only send publicKey, message, and signature.
  • Registration URL: Single-use and short-lived. Give it only to the human owner who will complete VeryAI palm verification.
  • deviceId: Use a stable identifier (e.g. from your identity store or hash of public key). It ties the agent to the registration and is used for lookup and verification.

Generating the AgentChallenge

The AgentChallenge is a signed payload that shows you control an Ed25519 key. It has the shape used by standard OpenClaw identity flows: deviceId, publicKey, message, signature, timestamp. Generate it once and send it to /agent/register/init or /agent/verify/signature.

Where identity comes from (OpenClaw)

If you run on OpenClaw, device identity is stored at:

  • Path: ~/.openclaw/identity/device.json

That file contains (never send privateKeyPem to any server):

FieldUse
deviceIdUse as deviceId in the challenge. Stable id for this agent/device.
publicKeyPemUse to derive publicKey (see below).
privateKeyPemUse only locally to sign the message. Never include in API requests.

If you don’t use OpenClaw, use your own identity store; ensure you have a stable deviceId, an Ed25519 key pair, and that you sign the exact string you send as message.

Build the challenge (step-by-step)

  1. Choose the message to sign

For registration, use a one-time challenge to avoid replay, e.g.: - clawkey-register-<unix_timestamp_ms> Example: clawkey-register-1738500000000 For verify/signature, the message is whatever you are proving (e.g. a nonce from a third party).

  1. Sign the message with your Ed25519 private key. The signature must be over the exact UTF-8 bytes of message (no extra prefix/suffix).
  1. Encode for the API:

- publicKey: Ed25519 public key in SPKI DER form, then base64 (no PEM wrapper). - signature: Raw Ed25519 signature bytes, base64. - timestamp: Unix time in milliseconds when the challenge was created (e.g. Date.now()).

  1. JSON body (AgentChallenge):

- deviceId — from your identity (e.g. device.json) - publicKey — base64 DER SPKI - message — exact string that was signed - signature — base64 signature - timestamp — number (ms)

Example: Node.js

const crypto = require("crypto");
const fs = require("fs");

const identityPath = `${process.env.HOME}/.openclaw/identity/device.json`;
const identity = JSON.parse(fs.readFileSync(identityPath, "utf8"));

const message = `clawkey-register-${Date.now()}`;
const privateKey = crypto.createPrivateKey(identity.privateKeyPem);
const signature = crypto.sign(null, Buffer.from(message, "utf8"), privateKey);

const publicKeyDer = crypto
  .createPublicKey(identity.publicKeyPem)
  .export({ type: "spki", format: "der" });

const challenge = {
  deviceId: identity.deviceId,
  publicKey: publicKeyDer.toString("base64"),
  message,
  signature: signature.toString("base64"),
  timestamp: Date.now(),
};
// POST challenge to https://api.clawkey.ai/v1/agent/register/init

Using a script

If you have a script that already produces an AgentChallenge (e.g. signs a message and outputs JSON with deviceId, publicKey, message, signature, timestamp), you can reuse it for ClawKey:

  1. Generate a challenge string, e.g. clawkey-register-$(date +%s)000 (seconds + "000" for ms) or use your script’s convention.
  2. Run the script to sign that message and get the challenge JSON.
  3. POST that JSON to https://api.clawkey.ai/v1/agent/register/init.

Same challenge format works for POST /agent/verify/signature when verifying a signature remotely.

Quick start

1. Start registration (agent-initiated)

Build an AgentChallenge as above, then send it to ClawKey to create a session and get a registration URL.

curl -X POST https://api.clawkey.ai/v1/agent/register/init \
  -H "Content-Type: application/json" \
  -d '{
    "deviceId": "my-agent-device-id",
    "publicKey": "<base64-DER-SPKI-Ed25519>",
    "message": "clawkey-register-1738500000000",
    "signature": "<base64-Ed25519-signature>",
    "timestamp": 1738500000000
  }'

Response (201):

  • sessionId — use to poll status
  • registrationUrloutput this as a link for the human; do not open it in a browser
  • expiresAt — session expiry (ISO 8601)

If the agent is already registered (deviceId exists), the API returns 409 Conflict.

2. Human completes verification

Tell the human owner to open the registrationUrl in their browser. They will go through VeryAI's palm verification via OAuth. When they finish, the agent is registered under their ownership.

3. Poll registration status

Poll until the human has completed or the session has expired:

curl "https://api.clawkey.ai/v1/agent/register/SESSION_ID/status"

Response: status is one of pending | completed | expired | failed. When status is completed, the response includes deviceId and registration (e.g. publicKey, registeredAt).

4. Verify signatures or look up an agent

  • Verify a signature — check that a message was signed by the given key and whether that agent is registered under a verified human:
curl -X POST https://api.clawkey.ai/v1/agent/verify/signature \
  -H "Content-Type: application/json" \
  -d '{
    "deviceId": "...",
    "publicKey": "...",
    "message": "...",
    "signature": "...",
    "timestamp": 1738500000000
  }'

Response: verified (signature valid), registered (agent under verified human).

  • Look up an agent by device id — get registration and verification status:
curl "https://api.clawkey.ai/v1/agent/verify/device/DEVICE_ID"

Response: registered, verified, and optionally registeredAt.

API reference

Base URL: https://api.clawkey.ai/v1 Local: http://localhost:3000/v1

Endpoints

MethodEndpointAuthDescription
POST/agent/register/initNoneStart registration session; returns sessionId, registrationUrl, expiresAt.
GET/agent/register/{sessionId}/statusNonePoll registration status: pending / completed / expired / failed.
POST/agent/verify/signatureNoneVerify a signature and whether the agent is registered under a verified human.
GET/agent/verify/device/{deviceId}NoneGet agent registration and verification status by device id.

Request/response schemas

AgentChallenge (used in register/init and verify/signature):

FieldTypeRequiredDescription
deviceIdstringyesKey/device id (e.g. public key hash or app id).
publicKeystringyesEd25519 public key, base64 DER SPKI.
messagestringyesExact message that was signed (e.g. challenge or nonce).
signaturestringyesEd25519 signature over message, base64.
timestampint64yesUnix timestamp (ms) when the challenge was created.

Register init response (201):

{
  "sessionId": "uuid",
  "registrationUrl": "https://clawkey.ai/register/...",
  "expiresAt": "2026-02-02T12:00:00Z"
}

Register status response (200):

{
  "status": "completed",
  "deviceId": "my-agent-device-id",
  "registration": {
    "publicKey": "...",
    "registeredAt": "2026-02-02T12:00:00Z"
  }
}

Verify signature response (200):

{
  "verified": true,
  "registered": true
}

Device status response (200):

{
  "registered": true,
  "verified": true,
  "registeredAt": "2026-02-02T12:00:00Z"
}

Error (4xx/5xx):

{
  "error": "Human-readable message",
  "code": "optional_code",
  "details": {}
}

Error codes

CodeMeaning
400Bad request (invalid or missing fields).
404Session or device not found.
409Agent already registered (device_id already exists).
500Server error.

What this proves

After registration and VeryAI verification:

  • Human ownership — The agent is bound to a human who passed palm verification.
  • Key binding — Ed25519 signatures prove the agent controls the key; ClawKey ties that key to the verified human.
  • Public verification — Third parties can call /agent/verify/signature or /agent/verify/device/{deviceId} to confirm an agent is registered and verified.

When to use this skill

  • Registering an OpenClaw (or other) agent under a human owner.
  • Proving to a third party that an agent is owned by a verified human (e.g. before granting access or privileges).
  • Checking whether a given key or device is registered and verified.

Need help?

  • API base: https://api.clawkey.ai/v1
  • Homepage: https://clawkey.ai

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

95.35%
按下载量换算19,466

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills