json-tools
Installation
SKILL.md
JSON Tools Skill
JSON manipulation and processing tools.
When to Use
- Parse and validate JSON
- Extract data from JSON
- Transform JSON structure
- Pretty print or minify JSON
- Query JSON with jq
Validate JSON
Check if Valid JSON
# Using Python
python3 -c "import json, sys; json.load(sys.stdin)" < file.json