json-tools

Parse, query, and transform JSON data using jq.

166|4|Updated Mar 25, 2026
One-click install
npx skills add https://github.com/gebruder/wirken --skill json-tools-gebruder
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: json-tools
Source: https://github.com/gebruder/wirken/tree/main/skills/json-tools
Command: npx skills add https://github.com/gebruder/wirken --skill json-tools-gebruder

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires jq, and includes scripts (resource) components.

What problem does it solve?

This Skill unit simplifies the parsing, querying, and transformation of JSON data, streamlining complex data manipulation tasks.

Core Features & Use Cases

  • Parse JSON: Convert JSON into a human-readable format.
  • Query Data: Extract specific data from JSON objects and arrays.
  • Transform Data: Modify JSON structures to fit different data requirements.
  • Use Case: Use this Skill to filter a list of products and extract only those that match specific criteria.

Quick Start

Use the json-tools skill to filter and display all products with a price higher than $50.

Frequently Asked Questions about json-tools

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I parse and extract specific data from a JSON file?

JSON parsing and data extraction are handled by executing jq commands to filter objects and arrays. This Skill allows you to query specific fields and convert raw JSON into a human-readable format for easier data analysis.

What is the best way to transform JSON data structures for API interactions?

Transforming JSON data for API interactions is facilitated by modifying structures to fit different data requirements. Using jq, you can manipulate JSON content to filter arrays, update objects, and format payloads dynamically.

Do I need jq installed to manipulate JSON data with this Skill?

Yes, jq is a required dependency. This Skill relies on the jq binary to execute commands that parse, query, and transform JSON content, meaning your environment must have jq installed before execution.

Can I filter a JSON array to find products matching specific criteria like a price threshold?

Filtering JSON arrays by specific criteria like a price threshold is fully supported. You can query JSON data to extract and display only the objects that match your defined conditions, such as products with a price higher than $50.

How does jq compare to other command-line tools for JSON data manipulation?

Jq provides a dedicated syntax for querying and transforming JSON data compared to generic text processing tools. This Skill leverages jq specifically for structured JSON parsing, ensuring accurate data extraction without relying on complex regular expressions.