jq
JSON processor for filtering, transforming, and manipulating JSON data in command line.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install majiayu000-claude-skill-registry-jq
Repository
Skill path: skills/data/jq
JSON processor for filtering, transforming, and manipulating JSON data in command line.
Open repositoryBest for
Primary workflow: Analyze Data & AI.
Technical facets: Full Stack, Data / AI.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: majiayu000.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install jq into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/majiayu000/claude-skill-registry before adding jq to shared team environments
- Use jq for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: jq
description: JSON processor for filtering, transforming, and manipulating JSON data in command line.
---
# jq — JSON Processor
**Basic Operations**
```bash
# Pretty-print JSON
jq '.' file.json
# Filter specific field
jq '.fieldName' file.json
# Filter array element by index
jq '.[index]' file.json
# Output all elements from arrays
jq '.[*]' file.json
# Parse from stdin
cat file.json | jq '.fieldName'
# Load JSON from URL
curl -s "http://example.com/file.json" | jq '.fieldName'
```
**Filtering & Transformation**
```bash
# Select multiple fields
jq '{field1: .field1, field2: .field2}' file.json
# Query nested data
jq '.outerField.innerField' file.json
# Filter by condition
jq 'select(.fieldName == "value")' file.json
# Modify field value
jq '.fieldName = "newValue"' file.json
# Delete a field
jq 'del(.fieldName)' file.json
```
**Array Operations**
```bash
# Count elements
jq '.arrayName | length' file.json
# Apply function to each element
jq '.arrayName[] | .fieldName' file.json
# First element
jq '.[0]' file.json
# First element's key
jq '.[0].key_name' file.json
```
**Advanced**
```bash
# Concatenate fields
jq '.field1 + " " + .field2' file.json
# Group by field
jq 'group_by(.fieldName)' file.json
# Sort by field
jq 'sort_by(.fieldName)' file.json
# Find unique values
jq 'unique' file.json
# Print keys and values
jq 'to_entries | .[] | "\(.key): \(.value)"' file.json
# Combine two JSON files
jq -s '.[0] + .[1]' file1.json file2.json
# Compact output (no whitespace)
jq -c '.' file.json
```