ERC-8004 Agent Creation Guide

SkillCloud & infra

Step-by-step guide to creating and deploying ERC-8004 Trustless Agents. Covers the full lifecycle from generating an agent identity NFT, setting up metadata, registering on-chain across 12 chains, building reputation, and connecting to the agent marketplace.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the ERC-8004 Agent Creation Guide skill

What this skill tells your AI

The instructions your AI receives, as published by nirholas/three.ws in data/skills/protocol/erc8004-agent-creation-guide/SKILL.md and read by ahel’s review.

A step-by-step guide to creating and deploying ERC-8004 Trustless Agents — from generating an identity NFT to building on-chain reputation across 12 chains.

ERC-8004 Overview

ERC-8004 ("Trustless Agents") is an Ethereum standard for AI agent identity:

ComponentDescription
Agent NFTEach agent is an on-chain NFT (ERC-721)
IdentityName, description, capabilities stored on-chain
ReputationOn-chain feedback and scoring system
RegistryGlobal registry of all agents
ValidationTrustless verification of agent capabilities

The 7-Step Process

Step 1: Generate Agent Identity

import { AgentFactory } from '@erc8004/sdk';

const factory = new AgentFactory(provider);

const agentIdentity = {
  name: "Sperax DeFi Advisor",
  description: "Expert AI agent for Sperax protocol — USDs yield, SPA staking, and Demeter farming",
  category: "defi",
  capabilities: [
    "portfolio-analysis",
    "yield-optimization",
    "risk-assessment",
    "trade-execution"
  ],
  // Resolve at mint time from platform config or the caller's selection —
  // never hardcode a model id. This string is uploaded to IPFS and minted
  // into immutable NFT metadata, so a stale id becomes permanent and public.
  model: resolveDefaultModel(),  // e.g. "<current-default-model>"
  version: "1.0.0"
};

Step 2: Create Agent Metadata

{
  "name": "Sperax DeFi Advisor",
  "description": "Expert for USDs, SPA, and Sperax Farms",
  "image": "ipfs://Qm.../agent-avatar.png",
  "external_url": "https://app.sperax.io/agents/defi-advisor",
  "attributes": [
    { "trait_type": "Category", "value": "DeFi" },
    { "trait_type": "Chain", "value": "Arbitrum" },
    { "trait_type": "Model", "value": "<current-default-model>" },
    { "trait_type": "Tools", "value": 12 },
    { "trait_type": "Reputation", "display_type": "number", "value": 0 }
  ],
  "properties": {
    "capabilities": ["portfolio-analysis", "yield-optimization"],
    "protocols": ["sperax", "aave", "uniswap"],
    "chains": ["arbitrum", "ethereum"]
  }
}

Step 3: Upload Metadata to IPFS

# Using Pinata
curl -X POST https://api.pinata.cloud/pinning/pinJSONToIPFS \
  -H "Authorization: Bearer $PINATA_JWT" \
  -d @agent-metadata.json

Step 4: Mint Agent NFT

const tx = await factory.createAgent({
  metadataURI: "ipfs://QmAgentMetadataHash",
  owner: "0xYourAddress",
  chain: "arbitrum"
});

console.log(`Agent NFT minted: Token ID ${tx.tokenId}`);
console.log(`Transaction: ${tx.hash}`);

Step 5: Register in Global Registry

const registry = new AgentRegistry(provider);

await registry.register({
  tokenId: tx.tokenId,
  endpoint: "https://api.chat.sperax.io/agents/defi-advisor",
  mcpEndpoint: "https://mcp.chat.sperax.io/defi-advisor",
  publicKey: "0x...",  // Agent's signing key
  chains: [42161, 1]   // Arbitrum, Ethereum
});

Step 6: Deploy Across Chains

ERC-8004 supports 12 chains:

ChainChain IDStatus
Ethereum1
Arbitrum42161
Base8453
Polygon137
Optimism10
BSC56
Avalanche43114
Fantom250
Gnosis100
zkSync324
Scroll534352
Linea59144
// Deploy to multiple chains
await factory.deployMultichain({
  tokenId: tx.tokenId,
  chains: [1, 42161, 8453, 56]
});

Step 7: Build Reputation

// Users submit feedback after agent interactions
await registry.submitFeedback({
  agentTokenId: 42,
  score: 5,           // 1-5 rating
  category: "accuracy",
  comment: "Excellent yield optimization advice"
});

// Check agent reputation
const rep = await registry.getReputation(42);
// { score: 4.8, totalReviews: 150, categories: {...} }

Agent Lifecycle

Create Identity → Upload Metadata → Mint NFT → Register
    │                                                │
    │    ┌──────────────────────────────────────────┘
    │    │
    ▼    ▼
Deploy → Serve Users → Collect Feedback → Build Reputation
    │                                         │
    └──── Update Metadata ◄───────────────────┘

SperaxOS Integration

ERC-8004 agents created through SperaxOS automatically:

  • Get SperaxOS marketplace listing
  • Receive the Sperax agent badge
  • Can access all builtin tools
  • Are indexed for discovery

Links

Signals

GitHub stars
114
Forks
29
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
erc8004-agent-creation-guide
Source
github.com/nirholas/three.ws