Overview
- Skill Key
- aronchick/expanso-json-validate
- Author
- aronchick
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/aronchick/expanso-json-validate
- Latest Commit SHA
- 2b228a9cd2391d88622fa218f3d7698965321268
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Expanso Json Validate 技能。 若已安装,则直接安装 Expanso Json Validate 技能。
# json-validate "Validate JSON syntax and structure" ## 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-validate/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 |
# json-validate
Validate JSON syntax and structure with detailed error reporting.
## Overview
This skill validates JSON content locally without any API calls. It parses the JSON and returns whether it's valid, any error messages, and statistics about the structure.
## Usage
### CLI Mode
```bash
# Validate JSON string
echo '{"key": "value"}' | expanso-edge run pipeline-cli.yaml
# Validate JSON file
cat data.json | expanso-edge run pipeline-cli.yaml
```
### MCP Mode
```bash
# Start server
PORT=8080 expanso-edge run pipeline-mcp.yaml &
# Make request
curl -X POST http://localhost:8080/validate \
-H "Content-Type: application/json" \
-d '{"json": "{\"key\": \"value\", \"array\": [1, 2, 3]}"}'
```
## Output
### Valid JSON
```json
{
"valid": true,
"error": null,
"parsed": {
"key": "value",
"array": [1, 2, 3]
},
"stats": {
"type": "object",
"length": 35
},
"metadata": {
"skill": "json-validate",
"mode": "cli",
"trace_id": "abc123...",
"timestamp": "2024-01-15T10:30:00Z"
}
}
```
### Invalid JSON
```json
{
"valid": false,
"error": "Invalid JSON syntax",
"parsed": null,
"stats": null,
"metadata": { ... }
}
```
## Use Cases
- Validating API responses
- Pre-commit hooks for JSON files
- CI/CD pipeline validation
- Data ingestion validation
heyixuan2
Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).
openstockdata
OpenClaw Skill for stock data analysis
capt-marbles
Generative Engine Optimization (GEO) for AI search visibility. Optimize content to appear in ChatGPT, Perplexity, Claude, and Google AI Overviews. Use when optimizing websites, pages, or content for LLM discoverability and citation.
camopel
Free multi-engine web search via ddgs CLI (DuckDuckGo, Google, Bing, Brave, Yandex, Yahoo, Wikipedia) + arXiv API search. No API keys required. Use when user needs web search, research paper discovery, or when other skills need a search backend. Drop-in replacement for web-search-plus.
camopel
Local arXiv paper manager with semantic search. Crawls arXiv categories, downloads PDFs, chunks content, and indexes with FAISS + Ollama embeddings. No cloud API keys required — everything runs locally.
camohiddendj
DuckDuckGo HTML search scraper CLI with JSON, CSV, OpenSearch, markdown, and compact outputs.