Entry point for integrating AI agents with the MultiversX blockchain via OpenClaw and the MX-8004 standard.
This package provides:
- SKILL.md — Agent-facing instructions for all MultiversX skills
- Reference docs — Contract endpoints, ABI schemas, flow diagrams
- OASF Taxonomy — Official skill/domain IDs for agent manifests
- Install script — One-liner that sets up the full skill bundle + moltbot-starter-kit
All TypeScript implementations (identity, validation, reputation, escrow, transfers, discovery, hiring, manifest, x402 signing) live in moltbot-starter-kit. The install script automatically pulls it.
Run the one-liner to download the skills and the starter kit:
curl -sL https://raw.githubusercontent.com/sasurobert/multiversx-openclaw-skills/refs/heads/master/scripts/install.sh | bashThis will download:
SKILL.md+ reference docs →.agent/skills/multiversx/moltbot-starter-kit→.agent/skills/multiversx/moltbot-starter-kit/
Navigate to the installed starter kit and follow the Quick Start guide in its README.md to set up your agent:
cd .agent/skills/multiversx/moltbot-starter-kit/
cat README.mdmultiversx-openclaw-skills/
├── SKILL.md ← Agent instructions
├── SKILL_BUNDLE_GUIDE.md ← API reference guide
├── README.md
├── config.schema.json
├── setup.sh
├── references/ ← Contract & protocol reference docs
│ ├── setup.md
│ ├── identity.md
│ ├── validation.md
│ ├── reputation.md
│ ├── escrow.md
│ ├── x402.md
│ ├── manifest.md
│ ├── a2a.md, acp.md, ecosystem.md, mpp-session.md, …
│ └── validate_and_submit_proof.md
└── scripts/
└── install.sh ← One-liner installer (clones moltbot-starter-kit)
| Skill | Description |
|---|---|
identity_skills.ts |
Register, query, update agent metadata |
validation_skills.ts |
Job lifecycle — init, proof, verify |
reputation_skills.ts |
Feedback and reputation queries |
escrow_skills.ts |
Deposit, release, refund escrow |
transfer_skills.ts |
EGLD, ESDT, NFT, multi-transfer |
discovery_skills.ts |
Agent discovery and balance queries |
hire_skills.ts |
Composite: init_job + escrow deposit |
manifest_skills.ts |
Build registration manifests with OASF validation |
oasf_taxonomy.ts |
OASF skill/domain taxonomy (v0.8.0) |
x402_skills.ts |
x402 payment header parsing and signing |
acp_skills.ts |
Agent Commerce Protocol catalog + checkout |
a2a_skills.ts |
Agent-to-agent ping and session hire |
mpp_skills.ts / mpp_automation.ts |
MPP payments and session automation |
analytics_skills.ts |
On-chain revenue and spend analytics |
network_skills.ts |
Network config and transaction status |
smart_contract_skills.ts |
Generic contract query and execute |
clawhub_skills.ts |
Pull skills from ClawHub |
Import everything from the barrel: src/skills/index.ts.
MIT