Claude-skill-registry json-config-helper

Validate, format, and work with JSON configuration files

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/json-config-helper" ~/.claude/skills/majiayu000-claude-skill-registry-json-config-helper && rm -rf "$T"
manifest: skills/data/json-config-helper/SKILL.md
source content

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