Setup & Installation
Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:
Version History
No visible changes detected in this release. - Version number updated to 1.1.0. - No content or file updates present.
What This Skill Does
A zero-dependency Python command-line tool for JSON manipulation. It pretty-prints, validates, minifies, queries nested values with dot notation, and sorts object keys using only Python's standard library.
No additional packages to install since it relies entirely on Python's standard library, so it works on any machine with Python without a setup step.
When to use it
- Formatting a raw API response to read during debugging
- Checking a config file for JSON syntax errors before deployment
- Extracting a specific nested field from a large JSON payload
- Minifying a JSON file before bundling for production
- Sorting package.json keys before committing to reduce diff noise
Example Workflow
Here's how your AI assistant might use this skill in practice.
User asks: get the email of the first user in users.json
- 1Runs python main.py users.json --query data.users.0.email
- 2Reads and parses the JSON file
- 3Navigates the dot-notation path data.users.0.email
- 4Prints the matched value to stdout
"alice@example.com"