/SKILL.md
# wayMint — ERC-8004 Agent Registration API > Base URL: `https://8004.way.je` You are an AI agent that wants a verifiable on-chain identity. This document tells you everything you need to register yourself using the ERC-8004 standard with proof-of-human verification. --- ## What you get - A **soulbound ERC-721 NFT** on Celo or Base representing your identity - A **public certificate page** at `https://8004.way.je/agent/{chain}:{id}` - A **Verified Human badge** proving a real person owns yo
npx skillsauth add erasmus/8004 8004Install this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Base URL:
https://8004.way.je
You are an AI agent that wants a verifiable on-chain identity. This document tells you everything you need to register yourself using the ERC-8004 standard with proof-of-human verification.
https://8004.way.je/agent/{chain}:{id}| Chain | Chain ID | Proof method | Registry |
|---|---|---|---|
| Celo Mainnet | 42220 | Self Protocol — passport NFC + ZK proof | 0xaC3DF9ABf80d0F5c020C06B04Cced27763355944 |
| Base Mainnet | 8453 | Coinbase Verifications — EAS attestation | 0x8004A169FB4a3325136EB29fA0ceB6D2e539a432 |
npm install @selfxyz/agent-sdk
import { requestRegistration } from '@selfxyz/agent-sdk';
// 1. Start registration — your human owner scans a QR code with the Self app
const session = await requestRegistration({
mode: 'linked', // Human wallet owns NFT; you get your own keypair
network: 'mainnet', // Celo Mainnet
humanAddress: '0x...', // Your human owner's wallet address
agentName: 'my-agent',
agentDescription: 'What I do',
});
// 2. Show the QR to your human
console.log('QR code URL:', session.deepLink);
// 3. Wait for them to scan (passport NFC → ZK proof → on-chain)
const result = await session.waitForCompletion({ timeoutMs: 10 * 60 * 1000 });
// 4. You are registered
console.log('Agent ID:', result.agentId);
console.log('Certificate:', `https://8004.way.je/agent/celo:${result.agentId}`);
console.log('Tx:', result.txHash);
// 5. Save your private key — shown once
const privateKey = await session.exportKey();
Before registering directly on-chain, pin your registration file:
curl -X POST https://8004.way.je/api/pin \
-H "Content-Type: application/json" \
-d '{
"name": "my-agent",
"description": "What I do and how to interact with me",
"services": [
{ "name": "MCP", "endpoint": "https://my-agent.example.com/mcp" },
{ "name": "A2A", "endpoint": "https://my-agent.example.com/a2a" }
],
"supportedTrust": ["reputation"]
}'
Response: { "cid": "bafy..." } → use as agentURI: ipfs://bafy...
# Agent on-chain data + metadata
GET https://8004.way.je/api/agent/celo/42
GET https://8004.way.je/api/agent/base/17
# All agents owned by a wallet
GET https://8004.way.je/api/owner/0x1234...abcd
# Check if an endpoint is reachable
GET https://8004.way.je/api/health/https%3A%2F%2Fmy-agent.example.com%2Fmcp
import { SelfAgent } from '@selfxyz/agent-sdk';
const agent = new SelfAgent({ privateKey: process.env.AGENT_PRIVATE_KEY! });
// Automatically attaches x-self-agent-address, x-self-agent-signature, x-self-agent-timestamp
const res = await agent.fetch('https://api.example.com/protected', {
method: 'POST',
body: JSON.stringify({ hello: true }),
});
import { SelfAgentVerifier } from '@selfxyz/agent-sdk';
const verifier = SelfAgentVerifier.create().requireAge(18).requireOFAC().build();
app.use('/api', verifier.auth());
{
"type": "https://eips.ethereum.org/EIPS/eip-8004#registration-v1",
"name": "my-agent",
"description": "What I do",
"image": "ipfs://... or https://...",
"services": [
{ "name": "MCP", "endpoint": "https://...", "version": "2025-06-18" },
{ "name": "A2A", "endpoint": "https://...", "version": "0.3.0" }
],
"x402Support": false,
"active": true,
"registrations": [
{ "agentId": 42, "agentRegistry": "eip155:42220:0xaC3DF9ABf80d0F5c020C06B04Cced27763355944" }
],
"supportedTrust": ["reputation"]
}
GET https://8004.way.je/.well-known/agent-registration.json
GET https://8004.way.je/.well-known/agent-registration.json?chain=celo&id=42
development
# wayMint — ERC-8004 Agent Registration API > Base URL: `https://8004.way.je` You are an AI agent that wants a verifiable on-chain identity. This document tells you everything you need to register yourself using the ERC-8004 standard with proof-of-human verification. --- ## What you get - A **soulbound ERC-721 NFT** on Celo or Base representing your identity - A **public certificate page** at `https://8004.way.je/agent/{chain}:{id}` - A **Verified Human badge** proving a real person owns yo
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.
development
Run, watch, debug, and extend OpenClaw QA testing with qa-lab and qa-channel. Use when Codex needs to execute the repo-backed QA suite, inspect live QA artifacts, debug failing scenarios, add new QA scenarios, or explain the OpenClaw QA workflow. Prefer the live OpenAI lane with regular openai/gpt-5.4 in fast mode; do not use gpt-5.4-pro or gpt-5.4-mini unless the user explicitly overrides that policy.