LaunchKit · 2026
Back to Skills

json-toolkit

Swiss-army knife for JSON files.

0
361 downloads
by @claudiodrusus

Setup & Installation

openclaw skills install @claudiodrusus/json-toolkit

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install json-toolkit

Version History

v1.1.0Feb 22, 2026 - Version note by skill developer:

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.

INPUT

User asks: get the email of the first user in users.json

AGENT
  1. 1Runs python main.py users.json --query data.users.0.email
  2. 2Reads and parses the JSON file
  3. 3Navigates the dot-notation path data.users.0.email
  4. 4Prints the matched value to stdout
OUTPUT

"alice@example.com"