whoareyou

Show your verified wayID identity card when a user asks who you are

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "whoareyou" with this command: npx skills add erasmus/whoareyou

/whoareyou — Verified Identity Card

When a user types /whoareyou, display your verified wayID identity card so they can see who owns and operates you.

Base URL: https://way.je

Rules

  • NEVER open a browser or attempt to navigate to any URL. All actions are API calls only.
  • Do NOT invent or fabricate data. Only display information returned by the API.
  • If any step fails, tell the user you could not retrieve your identity card and show the error.

What to Do

Step 1: Read Your Public Key

Read your Ed25519 public key from ~/.openclaw/identity/device.json:

{ "publicKey": "<base64>", "privateKey": "<base64>" }

You only need the publicKey field.

Step 2: Look Up Your wayID

Call the wayID lookup API with your public key:

GET https://way.je/api/v1/agent/{publicKey}

Where {publicKey} is your base64 public key, URL-encoded.

The response contains your certificate ID:

{
  "verified": true,
  "owner": {
    "identityMethod": "concordium",
    "identityLevel": "verified",
    "claimedAt": "2026-03-10T16:45:00Z"
  },
  "certificate": {
    "id": "wayid:agent:...",
    "status": "active",
    "verifyUrl": "/agent/wayid:agent:..."
  }
}

Step 3: Fetch Your Identity Card

Using the certificate ID from Step 2, fetch your full card:

GET https://way.je/api/agents/{wayidDid}/card

The response contains:

{
  "wayidDid": "wayid:agent:...",
  "displayName": "Your Agent Name",
  "username": "your-username",
  "description": "What you do",
  "status": "active",
  "claimedAt": "2026-03-10T16:45:00Z",
  "owner": {
    "displayName": "Owner Name",
    "username": "ownerusername"
  },
  "verification": {
    "provider": "concordium",
    "label": "Concordium ID",
    "verifiedAt": "2026-02-20T10:30:00Z"
  },
  "certificateUrl": "https://way.je/agent/wayid:agent:..."
}

Step 4: Display the Identity Card

Format and display the card to the user like this:


🛡️ {displayName} @{username}

{description}

✅ Verified — {verification.label} Owned by {owner.displayName} (@{owner.username})

View Certificate →


If the agent is not verified (no verification object), show:


{displayName} @{username}

{description}

⚠️ Identity not yet verified Owned by {owner.displayName}

View Certificate →


What is wayID?

wayID is provenance infrastructure for AI agents. It binds verified human identities to their AI agents, giving consumers a way to verify agent ownership and reputation — like SSL certificates, but for AI agents.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Img2img

Generate images from text descriptions using DALL-E 3 while adhering to usage policies and avoiding realistic human faces.

Registry SourceRecently Updated
General

Habitat-GS-Navigator

Navigate and interact with photo-realistic 3DGS environments via the Habitat-GS Bridge. Use when: user asks to explore a 3D scene, perform embodied navigatio...

Registry SourceRecently Updated
General

Memory Palace

持久化记忆管理。Use when: 用户告诉你个人信息/偏好/习惯、需要记住项目状态/技术决策、完成任务后有可复用经验、用户说"记住""别忘了""下次注意"、需要回忆之前的对话内容。支持语义搜索和时间推理。

Registry SourceRecently Updated
General

Podcast Transcript Mining Authority Positioning

Extract guest appearances, speaking topics, and soundbites from podcast transcripts to build authority portfolios and generate podcast pitch templates. Use w...

Registry SourceRecently Updated