Setup & Installation
openclaw skills install @aronchick/expanso-xml-to-json
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
npx clawhub install expanso-xml-to-json
What This Skill Does
Converts XML data to JSON format using the Expanso Edge runtime. Can run as a standalone CLI pipeline or as an MCP server.
Runs as both a CLI pipeline and an MCP server, so the same conversion logic works in scripts and agent workflows without rewriting.
When to use it
- Converting XML API responses to JSON for frontend use
- Transforming RSS or Atom feeds into structured JSON
- Migrating legacy XML config files to JSON format
- Normalizing XML webhook payloads before further processing
- Batch-converting XML datasets in shell scripts
Example Workflow
Here's how your AI assistant might use this skill in practice.
INPUT
User asks: Convert this XML string to JSON
AGENT
- 1Receives XML input from the user
- 2Pipes XML through expanso-edge using pipeline-cli.yaml
- 3Expanso Edge processes the format conversion
- 4Returns the resulting JSON
OUTPUT
JSON representation of the provided XML data