openclaw 网盘下载
OpenClaw

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

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

Convert CSV input into a JSON array of objects using Expanso Edge CLI or MCP pipelines.

开发与 DevOps

作者:Expanso @aronchick

许可证:MIT-0

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

版本:v1.0.0

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

0

安装量(当前) 1

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aronchick/expanso-csv-to-json

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

This instruction-only skill is internally consistent with its stated purpose (converting CSV to JSON), runs locally, and does not request credentials or install external code.

目的

The skill name, README, SKILL.md, and pipeline files all describe a local CSV→JSON conversion. The only runtime dependency is expanso-edge (expected for Expanso pipelines). No unrelated credentials, binaries, or config paths are requested.

说明范围

Runtime instructions are narrowly scoped to running the provided Expanso pipelines (CLI/stdin or MCP HTTP endpoint). The pipelines only read CSV input (stdin or HTTP body), an optional DELIMITER env var and optional PORT, and produce JSON output. Note: the MCP pipeline binds to 0.0.0.0:${PORT:-8080} and exposes an unauthenticated /convert POST endpoint — this is expected for a simple local server but is a security consideration if you run it o…

安装机制

There is no install spec and no files that will be fetched or executed by the skill at install time. It is instruction-only, so nothing is written to disk by the skill itself during installation.

证书

The skill does not declare or require any credentials or sensitive environment variables. The pipelines reference optional environment vars (DELIMITER, PORT) that are appropriate and proportional to the task.

持久

The skill does not request permanent presence (always is false) and does not modify other skills or system settings. It runs when invoked and has no elevated platform privileges.

综合结论

This skill appears to do only local CSV→JSON conversions and is coherent with its metadata. Before installing or running it: 1) ensure you trust the expanso-edge binary you will run (the skill relies on it to execute pipelines); 2) avoid piping sensitive secrets into the pipeline (it will include any input in output/metadata); 3) if you run MCP mode, be aware it listens on 0.0.0.0 by default and exposes an unauthenticated /convert POST endpoin…

安装(复制给龙虾 AI)

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

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

SKILL.md

打开原始 SKILL.md(GitHub raw)

# csv-to-json

"Convert CSV data to JSON array of objects"

## 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/csv-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 |