openclaw 网盘下载
OpenClaw

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

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

Convert JSON input into YAML format using Expanso Edge pipelines for CLI or MCP server integration.

开发与 DevOps

作者:Expanso @aronchick

许可证:MIT-0

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

版本:v1.0.0

统计:⭐ 0 · 687 · 1 current installs · 1 all-time installs

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aronchick/expanso-json-to-yaml

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill's files and runtime instructions match its stated purpose (convert JSON to YAML); it requests no credentials or unusual installs and is internally consistent.

目的

Name, SKILL.md, and included pipeline YAML files all implement a JSON→YAML conversion for CLI and MCP modes. Required tooling (expanso-edge) is consistent with the pipelines; nothing unrelated is requested.

说明范围

Runtime instructions are focused on conversion and reference only the provided pipeline files. The MCP pipeline will start an HTTP server bound to 0.0.0.0:${PORT:-8080} and expose /convert (POST) — this is expected for a server mode but may expose the service to the network if run without firewalling. The SKILL.md also suggests deploying the pipeline to Expanso Cloud, which would send user input to a remote service; users should consider data …

安装机制

No install spec or third-party downloads are included in the skill bundle (instruction-only). The only external dependency is the expanso-edge binary, which is noted in SKILL.md — this is proportional and transparent.

证书

The skill declares no environment variables, credentials, or config paths. The pipelines use only input content and create metadata (trace_id, timestamp) locally. No extraneous secrets are requested.

持久

The skill does not request persistent presence (always:false), does not modify other skills or system-wide configs, and contains no installation steps that write back credentials or change agent settings.

综合结论

This skill is coherent and minimal: it converts JSON to YAML and requires expanso-edge to run the provided pipelines. Before using it, decide whether you will run it locally or deploy to the cloud: running the MCP pipeline will open an HTTP server on 0.0.0.0 (default port 8080) — ensure appropriate firewalling or bind to a safer interface/port if you don't want it publicly reachable. If you deploy the job to Expanso Cloud, your input JSON will…

安装(复制给龙虾 AI)

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

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

SKILL.md

打开原始 SKILL.md(GitHub raw)

# json-to-yaml

Convert JSON to YAML 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/json-to-yaml/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 |