
Json Config Helper
- 44 installs
- 16 repo stars
- Updated November 20, 2025
- jackspace/claudeskillz
Validate, format, and query JSON configuration files (package.json, .mcp.json, Docker configs) using jq.
About
Provides jq-based recipes to validate, format, and extract values from JSON config files. A developer uses it when working with package.json, .mcp.json, or other JSON configuration.
- Validate, pretty-print, minify, and sort with jq
- Extract and filter values, find syntax errors
Json Config Helper by the numbers
- 44 all-time installs (skills.sh)
- Ranked #774 of 1,438 DevOps & CI/CD skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jackspace/claudeskillz --skill json-config-helperAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 44 |
|---|---|
| repo stars | ★ 16 |
| Last updated | November 20, 2025 |
| Repository | jackspace/claudeskillz ↗ |
What it does
Validate, format, and query JSON configuration files (package.json, .mcp.json, Docker configs) using jq.
Files
Json-config-helper
Instructions
When working with JSON files:
- Validate syntax with jq
- Pretty-print with jq '.'
- Minify with jq -c
- Sort keys with jq -S
- Extract values: jq '.key.subkey'
- Filter arrays: jq '.[] | select(.name == "value")'
- Map operations: jq 'map(.field)'
- package.json (Node.js)
- .mcp.json (MCP servers)
- .vscode settings
- Docker configs
- jq for command-line processing
- Suggest schema validation tools
- Provide corrected versions
- Find syntax errors (missing commas, quotes)
- Validate against JSON Schema
- Handle encoding issues
Examples
Add examples of how to use this skill here.
Notes
- This skill was auto-generated
- Edit this file to customize behavior
{
"sections": {
"Notes": "- This skill was auto-generated\n- Edit this file to customize behavior",
"Instructions": "When working with JSON files:\n- Validate syntax with jq\n- Pretty-print with jq '.'\n- Minify with jq -c\n- Sort keys with jq -S\n- Extract values: jq '.key.subkey'\n- Filter arrays: jq '.[] | select(.name == \"value\")'\n- Map operations: jq 'map(.field)'\n- package.json (Node.js)\n- .mcp.json (MCP servers)\n- .vscode settings\n- Docker configs\n- jq for command-line processing\n- Suggest schema validation tools\n- Provide corrected versions\n- Find syntax errors (missing commas, quotes)\n- Validate against JSON Schema\n- Handle encoding issues",
"Examples": "Add examples of how to use this skill here."
},
"id": "json-config-helper",
"name": "json-config-helper",
"description": "Validate, format, and work with JSON configuration files"
}---
name: json-config-helper
description: Validate, format, and work with JSON configuration files
---
# Json-config-helper
## Instructions
When working with JSON files:
- Validate syntax with jq
- Pretty-print with jq '.'
- Minify with jq -c
- Sort keys with jq -S
- Extract values: jq '.key.subkey'
- Filter arrays: jq '.[] | select(.name == "value")'
- Map operations: jq 'map(.field)'
- package.json (Node.js)
- .mcp.json (MCP servers)
- .vscode settings
- Docker configs
- jq for command-line processing
- Suggest schema validation tools
- Provide corrected versions
- Find syntax errors (missing commas, quotes)
- Validate against JSON Schema
- Handle encoding issues
## Examples
Add examples of how to use this skill here.
## Notes
- This skill was auto-generated
- Edit this file to customize behavior
Related skills
DevOps & CI/CDdevops