openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Expanso xml-to-json

Convert XML input into JSON format using Expanso Edge pipelines for CLI, MCP server, or cloud deployment.

开发与 DevOps

作者:Expanso @aronchick

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 673 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aronchick/expanso-xml-to-json

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill does what it says (convert XML to JSON), is instruction-only, asks for no secrets, and contains only pipeline configs — minor metadata inconsistencies but no signs of malicious behavior.

目的

The skill's name, description, and pipelines all line up with an XML→JSON converter. However, SKILL.md references runtime tools (expanso-edge and expanso-cli) while the registry metadata lists no required binaries; the presence of expanso-cli in the usage examples is not declared. This is an omission/inconsistency but not evidence of malicious intent.

说明范围

Runtime instructions and the mapping processors only parse input XML and produce JSON, include metadata (trace_id, timestamp), and for MCP expose a POST /convert endpoint. The instructions do not direct reading of unrelated files, secrets, shell history, or outbound exfiltration.

安装机制

There is no install spec and no packaged code to download; this is instruction-only and relies on the expanso-edge binary. No remote archives or unusual installs are invoked by the skill itself.

证书

The skill declares no required environment variables or credentials. The MCP pipeline uses a conventional PORT environment variable for binding but does not require secrets or external API keys. The lack of declared required binaries is a minor inconsistency (see purpose_capability).

持久

always is false and the skill does not request elevated or persistent platform privileges. Autonomous invocation is allowed by default but nothing in the skill combines that with broad credentials or system modifications.

综合结论

This skill appears to be a straightforward XML→JSON pipeline for Expanso Edge. Before installing or deploying, note two small issues: (1) SKILL.md expects the expanso-edge binary (and mentions expanso-cli for cloud deploy) but the registry metadata does not list required binaries — ensure you have those CLIs from trusted sources before running. (2) The MCP pipeline will bind to 0.0.0.0:${PORT:-8080} and expose a POST /convert endpoint — if you…

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Expanso xml-to-json」。简介:Convert XML input into JSON format using Expanso Edge pipelines for CLI, MCP se…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aronchick/expanso-xml-to-json/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

# xml-to-json

Convert XML to JSON format

## Requirements

- Expanso Edge installed (`expanso-edge` binary in PATH)
- Install via: `clawhub install expanso-edge`

## Usage

### CLI Pipeline
```bash
# Run standalone
echo '<input>' | expanso-edge run pipeline-cli.yaml
```

### MCP Pipeline
```bash
# Start as MCP server
expanso-edge run pipeline-mcp.yaml
```

### Deploy to Expanso Cloud
```bash
expanso-cli job deploy https://skills.expanso.io/xml-to-json/pipeline-cli.yaml
```

## Files

| File | Purpose |
|------|---------|
| `skill.yaml` | Skill metadata (inputs, outputs, credentials) |
| `pipeline-cli.yaml` | Standalone CLI pipeline |
| `pipeline-mcp.yaml` | MCP server pipeline |