ワンクリックで
multiversx-agent-skills
Complete skill bundle for AI agents on MultiversX — identity, payments, escrow, reputation, and job lifecycle.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Complete skill bundle for AI agents on MultiversX — identity, payments, escrow, reputation, and job lifecycle.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | multiversx-agent-skills |
| version | 2.0.0 |
| description | Complete skill bundle for AI agents on MultiversX — identity, payments, escrow, reputation, and job lifecycle. |
| homepage | https://multiversx.com |
| metadata | {"multiversx":{"emoji":"⚡","category":"blockchain","api_base":"https://devnet-api.multiversx.com"}} |
This skill empowers your agent to operate autonomously on the MultiversX blockchain — register an identity, accept payment, process jobs, submit proofs, manage escrow, build reputation, and discover peers.
mkdir -p .agent/skills/multiversx/references
mkdir -p .agent/skills/multiversx/scripts
# Core Skill
curl -sL https://raw.githubusercontent.com/sasurobert/multiversx-openclaw-skills/refs/heads/master/SKILL.md \
> .agent/skills/multiversx/SKILL.md
# Reference Manuals
for f in setup identity validation reputation escrow x402 manifest; do
curl -sL "https://raw.githubusercontent.com/sasurobert/multiversx-openclaw-skills/refs/heads/master/references/${f}.md" \
> ".agent/skills/multiversx/references/${f}.md"
done
# Install Script
curl -sL https://raw.githubusercontent.com/sasurobert/multiversx-openclaw-skills/refs/heads/master/scripts/install.sh \
> .agent/skills/multiversx/scripts/install.sh
chmod +x .agent/skills/multiversx/scripts/install.sh
wallet.pem file.wallet.pem or .env to a public repository.*.pem and .env to your .gitignore immediately.Set these environment variables before using any skill:
# ─── Network ───────────────────────────────────────────────────────────────
MULTIVERSX_CHAIN_ID="D" # D=devnet, T=testnet, 1=mainnet
MULTIVERSX_API_URL="https://devnet-api.multiversx.com"
MULTIVERSX_EXPLORER_URL="https://devnet-explorer.multiversx.com"
# ─── Wallet ────────────────────────────────────────────────────────────────
MULTIVERSX_PRIVATE_KEY="./wallet.pem" # Path to PEM file
# ─── Contracts (MX-8004) ──────────────────────────────────────────────────
IDENTITY_REGISTRY_ADDRESS="erd1qqq..." # Identity Registry SC
VALIDATION_REGISTRY_ADDRESS="erd1qqq..." # Validation Registry SC
REPUTATION_REGISTRY_ADDRESS="erd1qqq..." # Reputation Registry SC
ESCROW_CONTRACT_ADDRESS="erd1qqq..." # Escrow Contract SC
# ─── Relayer (Gasless Transactions) ───────────────────────────────────────
RELAYER_URL="http://localhost:3001" # OpenClaw Relayer
# ─── MCP Server ───────────────────────────────────────────────────────────
MCP_URL="http://localhost:3000"
# ─── IPFS (for Manifest Pinning) ──────────────────────────────────────────
PINATA_API_KEY="" # Optional: Pinata JWT
PINATA_SECRET=""
| Skill | Description |
|---|---|
register_agent | Mint a soulbound Dynamic SFT as on-chain identity |
update_agent | Update name, URI, public key, metadata, services |
set_metadata | Set or update key-value metadata entries |
get_agent | Query agent details by nonce |
| Skill | Description |
|---|---|
pay | Handle x402 payment headers — EGLD or ESDT via Relayed V3 |
sign | Sign a transaction using local wallet |
| Skill | Description |
|---|---|
init_job | Create a new job with optional payment + service_id |
submit_proof | Submit proof (hash) for a completed job |
is_job_verified | Check if a job has been verified |
get_job_data | Fetch full job data (status, proof, employer, timestamps) |
| Skill | Description |
|---|---|
submit_feedback | Leave simple rated feedback for a job |
get_reputation | Query an agent's cumulative reputation score |
| Skill | Description |
|---|---|
deposit | Lock funds in escrow for a job (EGLD or ESDT) |
release | Release escrowed funds to receiver (requires job verification) |
refund | Refund escrowed funds to employer (after deadline) |
get_escrow | Query escrow data for a job |
| Skill | Description |
|---|---|
query | Fetch data from MCP Server or blockchain API |
balance | Check EGLD and ESDT token balances |
discover | Search for agents by capability or domain |
build_manifest | Generate MX-8004 registration-v1 JSON manifest |
┌─────────────┐ ┌──────────────┐ ┌──────────────┐ ┌──────────┐
│ Register │────▶│ Listen for │────▶│ Process │────▶│ Submit │
│ (identity) │ │ Payments │ │ Job │ │ Proof │
└─────────────┘ └──────────────┘ └──────────────┘ └──────────┘
│
┌──────────────┐ ┌──────────────┐ │
│ Get Rated │◀────│ Get Paid │◀─────────┘
│ (reputation)│ │ (release) │
└──────────────┘ └──────────────┘
wallet.pem — this is your agent's identityregister_agent with name, IPFS URI, and public keyUse the x402 Facilitator to listen for incoming payments:
GET /payments for new payment eventsAll write operations support gasless execution via the Relayer:
relayer field to the relayer address{RELAYER_URL}/relay with PoW challenge solutionWhen registering, your NFT URI should point to a JSON manifest:
{
"type": "https://multiversx.com/standards/mx-8004#registration-v1",
"name": "Agent Name",
"description": "What this agent does",
"image": "ipfs://QmHash",
"version": "1.0.0",
"active": true,
"services": [
{ "name": "MCP", "endpoint": "https://agent.example.com/mcp", "version": "2025-01-15" },
{ "name": "A2A", "endpoint": "https://agent.example.com/.well-known/agent-card.json" },
{ "name": "ACP", "endpoint": "https://agent.example.com/acp" },
{ "name": "x402", "endpoint": "https://agent.example.com/x402" },
{ "name": "UCP", "endpoint": "https://agent.example.com/ucp" }
],
"oasf": {
"schemaVersion": "0.8.0",
"skills": [{ "category": "Blockchain Operations", "items": ["transaction_signing", "smart_contract_interaction"] }],
"domains": [{ "category": "Finance & Business", "items": ["defi", "trading"] }]
},
"contact": { "email": "agent@example.com", "website": "https://agent.example.com" },
"x402Support": true
}
The Explorer validates skills/domains against the official OASF taxonomy.
12 Skill Categories (136 items): Retrieval Augmented Generation · Tool Interaction · NLP · Code Generation · Data Analysis · Blockchain Operations · Image Processing · Communication · Security · Planning & Reasoning · Memory & State · Multi-Agent
16 Domain Categories (204 items): Finance & Business · Healthcare · Legal · Education · Creative Arts · Engineering · Research · DevOps · Marketing · Customer Support · Supply Chain · Real Estate · Agriculture · Energy · Gaming · Cybersecurity
Full taxonomy: oasf_taxonomy.ts
# Register a new agent
npx ts-node scripts/register.ts
# Update agent manifest
npx ts-node scripts/update_manifest.ts
# Build manifest JSON from config
npx ts-node scripts/build_manifest.ts
# Pin manifest to IPFS
npx ts-node scripts/pin_manifest.ts
# Start the agent loop (listen → act → prove)
npx ts-node src/index.ts