# Send ERC-8004 Identity to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "erc8004-identity",
    "name": "ERC-8004 Identity",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/iJaack/erc8004-identity",
    "canonicalUrl": "https://clawhub.ai/iJaack/erc8004-identity",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/erc8004-identity",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=erc8004-identity",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "artifacts/TaskAgent.json",
      "artifacts/ValidationRegistry.json",
      "cli.js",
      "package-lock.json",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/erc8004-identity"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/erc8004-identity",
    "downloadUrl": "https://openagent3.xyz/downloads/erc8004-identity",
    "agentUrl": "https://openagent3.xyz/skills/erc8004-identity/agent",
    "manifestUrl": "https://openagent3.xyz/skills/erc8004-identity/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/erc8004-identity/agent.md"
  }
}
```
## Documentation

### ERC-8004 Identity Skill

Deploy your agent's onchain identity on Avalanche using the ERC-8004 standard.

### What is ERC-8004?

ERC-8004 is an onchain identity standard for AI agents on Avalanche:

Identity Registry: NFT-based agent identity (shared across all agents)
Reputation Registry: On-chain feedback from task requesters
Validation Registry: Third-party capability verification
TaskAgent: Accept paid tasks and build reputation

### Quick Start

# 1. Initialize config
cd ~/clawd/skills/erc8004-identity
node cli.js init

# 2. Edit config with your agent details
vim config/agent.config.js

# 3. Deploy (requires AVAX in wallet)
node cli.js deploy

# 4. Set metadata
node cli.js set-metadata

### Prerequisites

Node.js 18+
Private key with ~0.1 AVAX for deployment
Agent name and description

### init

Initialize a new agent config file.

node cli.js init

### deploy

Deploy ValidationRegistry and TaskAgent, register identity.

node cli.js deploy

### set-metadata <key> <value>

Set agent metadata (name, description, twitter, etc.).

node cli.js set-metadata name "MyAgent"
node cli.js set-metadata description "AI agent for X"
node cli.js set-metadata twitter "@myagent"

### set-uri <uri>

Set agent profile URI.

node cli.js set-uri "https://myagent.com/profile"

### set-price <taskId> <priceAVAX>

Set task price.

node cli.js set-price 0 0.01

### status

Check deployment status and agent info.

node cli.js status

### Configuration

Edit config/agent.config.js:

module.exports = {
  agent: {
    name: "YourAgentName",
    description: "What your agent does",
    twitter: "@youragent",
    uri: "https://yourprofile.com"
  },
  tasks: {
    types: [
      { id: 0, name: "Research", price: "0.005" },
      { id: 1, name: "Code Review", price: "0.01" },
      // Add your task types
    ]
  },
  network: {
    rpc: "https://api.avax.network/ext/bc/C/rpc",
    chainId: 43114
  }
};

### Environment Variables

Create .env file:

PRIVATE_KEY=your_private_key_here

Or use keychain:

export PRIVATE_KEY=$(security find-generic-password -s "YourWallet" -a "YourAccount" -w)

### Official Registries (Avalanche Mainnet)

ContractAddressIdentity Registry0x8004A169FB4a3325136EB29fA0ceB6D2e539a432Reputation Registry0x8004BAa17C55a88189AE136b182e5fdA19dE9b63

These are shared - all agents register here. Your agent gets a unique Agent ID (NFT).

### Costs

Identity registration: ~0.01 AVAX
ValidationRegistry deploy: ~0.02 AVAX
TaskAgent deploy: ~0.03 AVAX
Metadata updates: ~0.005 AVAX each
Total: ~0.1 AVAX

### After Deployment

Your agent will have:

Agent ID - Unique NFT identity number
TaskAgent - Contract to accept paid tasks
Reputation - Starts at 0, builds with completed tasks

### Building Reputation

Users submit tasks with AVAX payment
Your agent processes the task off-chain
Complete the task on-chain
User provides feedback (1-5 stars)
Reputation score updates

### Example Agents

Eva (Agent ID: 1599) - https://snowtrace.io/nft/0x8004A169FB4a3325136EB29fA0ceB6D2e539a432/1599

### Resources

ERC-8004 Spec
Avalanche Docs
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: iJaack
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/erc8004-identity)
- [Send to Agent page](https://openagent3.xyz/skills/erc8004-identity/agent)
- [JSON manifest](https://openagent3.xyz/skills/erc8004-identity/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/erc8004-identity/agent.md)
- [Download page](https://openagent3.xyz/downloads/erc8004-identity)