Use this skill when the user wants to parse, filter, or manipulate JSON data.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add javimosch/supercli --skill quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/javimosch-quickstart-2b46980e)More formats (shields.io, HTML) on the badges page.
---
name: json-cli
description: Use this skill when the user wants to parse, filter, or manipulate JSON data.
---
# JSON CLI Plugin
A json command for massaging JSON on the Unix command line.
## Commands
### JSON Manipulation
- `json-cli json parse` — Parse and manipulate JSON
## Usage Examples
- "json-cli json parse --input '{\"key\": \"value\"}'"
- "json-cli json parse --path key"
## Installation
```bash
npm install -g json
```
## Examples
```bash
# Parse JSON string
echo '{"name": "John"}' | json
# Extract keys
echo '{"name": "John", "age": 30}' | json keys
# Extract values
echo '{"name": "John", "age": 30}' | json values
# Extract specific path
echo '{"user": {"name": "John"}}' | json user.name
# Filter array
echo '[{"id": 1}, {"id": 2}]' | json -a 'this.id === 1'
# Pretty print JSON
echo '{"name":"John"}' | json
# Read from file
json < file.json
# Sort by key
echo '{"b": 2, "a": 1}' | json --sort-keys
```
## Key Features
- Parse JSON from stdin or file
- Extract keys and values
- Path-based filtering
- Array filtering
- Sorting
- Pretty printing
- Unix pipeline support
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!