skills$openclaw/jq
gumadeiras1.7k

by gumadeiras

jq – OpenClaw Skill

jq is an OpenClaw Skills integration for data analytics workflows. Command-line JSON processor. Extract, filter, transform JSON.

1.7k stars5.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namejq
descriptionCommand-line JSON processor. Extract, filter, transform JSON. OpenClaw Skills integration.
ownergumadeiras
repositorygumadeiras/jq
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @gumadeiras/jq
last updatedFeb 7, 2026

Maintainer

gumadeiras

gumadeiras

Maintains jq in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
438 B
SKILL.md
1.3 KB
SKILL.md

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
README.md

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.