Move from skills/ to commands/ so it shows as /json-pretty:format in the autocomplete menu with the plugin name prefix. Move the script to scripts/ to match command-based plugin conventions. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
68 lines
1.4 KiB
Markdown
68 lines
1.4 KiB
Markdown
---
|
|
description: "Format, validate, or minify JSON without external online services"
|
|
allowed-tools: Bash
|
|
---
|
|
|
|
## When to Use
|
|
|
|
Use when the user asks to:
|
|
- "prettify json"
|
|
- "format json"
|
|
- "pretty print json"
|
|
- "validate json"
|
|
- "clean up json"
|
|
- Or mentions wanting to format/prettify JSON data
|
|
|
|
## Tool Location
|
|
|
|
`${CLAUDE_PLUGIN_ROOT}/scripts/json-pretty.py`
|
|
|
|
Also symlinked to `~/.local/bin/json-pretty` for PATH access.
|
|
|
|
## Usage
|
|
|
|
```bash
|
|
# From file
|
|
json-pretty input.json
|
|
|
|
# From stdin/pipe
|
|
cat data.json | json-pretty
|
|
echo '{"foo":"bar"}' | json-pretty
|
|
|
|
# Save to file
|
|
json-pretty input.json -o output.json
|
|
|
|
# Options
|
|
json-pretty input.json --indent 4 # Custom indentation
|
|
json-pretty input.json --sort-keys # Sort object keys
|
|
json-pretty input.json --compact # Minify instead of prettify
|
|
```
|
|
|
|
## Options
|
|
|
|
- `-o, --output FILE`: Write to file instead of stdout
|
|
- `-i, --indent N`: Indentation spaces (default: 2)
|
|
- `-s, --sort-keys`: Sort object keys alphabetically
|
|
- `-c, --compact`: Compact output (minify)
|
|
|
|
## Examples
|
|
|
|
**Prettify inline JSON:**
|
|
```bash
|
|
echo '{"name":"cal","items":[1,2,3]}' | json-pretty
|
|
```
|
|
|
|
**Format a file:**
|
|
```bash
|
|
json-pretty messy.json -o clean.json
|
|
```
|
|
|
|
**Sort keys and use 4-space indent:**
|
|
```bash
|
|
json-pretty data.json --indent 4 --sort-keys
|
|
```
|
|
|
|
## Privacy Note
|
|
|
|
Built specifically to avoid posting potentially sensitive JSON to online prettifier services.
|