技能详情(站内镜像,无评论)
作者:Expanso @aronchick
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.0
统计:⭐ 0 · 649 · 1 current installs · 1 all-time installs
⭐ 0
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:aronchick/expanso-json-pretty
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
This skill is internally consistent: it is an instruction-only Expanso pipeline that pretty-prints JSON, requests no credentials, and has no install steps or surprising behavior.
目的
The name, SKILL.md, skill.yaml and pipeline YAML files all align: the skill's sole purpose is to parse and reformat JSON (CLI and HTTP/MCP modes). Required components (expanso-edge) match the stated purpose.
说明范围
Runtime instructions only tell the agent to run expanso-edge with the provided pipeline files, run an MCP HTTP endpoint, or deploy to Expanso Cloud. The pipelines only parse/format JSON and add metadata. One operational note: the MCP pipeline enables an unauthenticated HTTP endpoint (0.0.0.0:${PORT:-8080} /format), which is expected for an HTTP formatting service but could be exposed if started on a public network.
安装机制
There is no install specification and no code to download or execute; this is instruction-only and relies on the expanso-edge binary being present. Low install risk.
证书
The skill declares no required environment variables, no credentials, and skill.yaml has empty credentials. The files and instructions do not reference secrets or unrelated environment variables.
持久
always is false and the skill does not request persistent system-level privileges or modify other skills' config. Autonomous invocation is allowed (platform default) but the skill's scope is limited.
综合结论
This skill appears to do exactly what it says: pretty-print JSON using Expanso pipelines. It requires the expanso-edge binary to run and provides two modes (CLI and an HTTP server). There are no requested secrets. If you start the MCP HTTP server, be aware it binds to 0.0.0.0 by default and has no built-in authentication—avoid running it on a public interface unless you add network-level protections. Otherwise it is safe and coherent with its …
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Expanso json-pretty」。简介:Formats and pretty-prints JSON input with indentation using Expanso Edge pipeli…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aronchick/expanso-json-pretty/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
# json-pretty
"Pretty print JSON with indentation"
## 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-pretty/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 |