1.7k★by gumadeiras
jq – OpenClaw Skill
jq is an OpenClaw Skills integration for data analytics workflows. Command-line JSON processor. Extract, filter, transform JSON.
Skill Snapshot
| name | jq |
| description | Command-line JSON processor. Extract, filter, transform JSON. OpenClaw Skills integration. |
| owner | gumadeiras |
| repository | gumadeiras/jq |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @gumadeiras/jq |
| last updated | Feb 7, 2026 |
Maintainer

name: jq description: Command-line JSON processor. Extract, filter, transform JSON.
jq
Command-line JSON processor for extracting, filtering, and transforming JSON.
Installation
macOS / Linux (Homebrew):
brew install jq
All platforms: See jqlang.org/download for packages, binaries, and build instructions.
Usage
jq '[filter]' [file.json]
cat file.json | jq '[filter]'
Quick Reference
.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
Flags
-r raw output (no quotes) · -c compact · -s slurp into array · -S sort keys
Examples
jq '.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
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install jq?
Run openclaw add @gumadeiras/jq in your terminal. This installs jq into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/gumadeiras/jq. Review commits and README documentation before installing.
