Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Command-line JSON processor. Extract, filter, transform JSON.
.claude/skills/sundial-org-jq/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-11 | ✗→✓ | ▲ Improved | -18% | 0% |
| case-24 | ✓→✗ | ▼ Worse | -16% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 32% | 0% |
| case-02 | ✓→✓ | = Same ✓ | 19% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 29% | 0% |
Command-line JSON processor for extracting, filtering, and transforming JSON.
macOS / Linux (Homebrew):
bashbrew install jq
All platforms: See jqlang.org/download for packages, binaries, and build instructions.
bashjq '[filter]' [file.json] cat file.json | jq '[filter]'
bash.key # Get key .a.b.c # Nested access .[0] # First element .[] # Iterate array .[] | select(.x > 5) # Filter {a: .x, b: .y} # Reshape . + {new: "val"} # Add field del(.key) # Remove field length # Count [.[] | .x] | add # Sum keys # List keys unique # Dedupe array group_by(.x) # Group
-r raw output (no quotes) · -c compact · -s slurp into array · -S sort keys
bashjq '.users[].email' data.json # Extract emails jq -r '.name // "default"' data.json # With fallback jq '.[] | select(.active)' data.json # Filter active jq -s 'add' *.json # Merge files jq '.' file.json # Pretty-print
Other measured skills in the registry, with their headline benchmark lift.