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.
curl -sL https://raw.githubusercontent.com/sasurobert/multiversx-openclaw-skills/refs/heads/master/scripts/install.sh | bashThis downloads:
SKILL.md+ reference docs →.agent/skills/multiversx/moltbot-starter-kit→.agent/skills/multiversx/moltbot-starter-kit/
multiversx-openclaw-skills/
├── SKILL.md ← Agent instructions
├── SKILL_BUNDLE_GUIDE.md ← API reference guide
├── README.md
├── config.schema.json
├── setup.sh
├── references/ ← Contract reference docs
│ ├── setup.md
│ ├── identity.md
│ ├── validation.md
│ ├── reputation.md
│ ├── escrow.md
│ ├── x402.md
│ └── manifest.md
└── scripts/
└── install.sh ← One-liner installer (clones moltbot-starter-kit)
| Skill | Description |
|---|---|
identity_skills.ts |
Register, update, query agents |
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) |
MIT