JSON Tools
SkillDev toolsParse, query, and transform JSON data
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the JSON Tools skill
What this skill tells your AI
The instructions your AI receives, as published by gebruder/wirken in skills/json-tools/SKILL.md and read by ahel’s review.
Parse and transform JSON using jq.
Query
- Pretty print:
echo '<json>' | jq . - Get field:
echo '<json>' | jq '.field' - Nested field:
echo '<json>' | jq '.a.b.c' - Array element:
echo '<json>' | jq '.[0]' - Array length:
echo '<json>' | jq 'length'
Filter and transform
- Select fields:
echo '<json>' | jq '{name: .name, id: .id}' - Filter array:
echo '<json>' | jq '.[] | select(.status == "active")' - Map:
echo '<json>' | jq '[.[] | .name]' - Sort:
echo '<json>' | jq 'sort_by(.date)' - Group:
echo '<json>' | jq 'group_by(.type)' - Unique:
echo '<json>' | jq '[.[].category] | unique'
File operations
- Read and query:
jq '.key' file.json - Compact:
jq -c . file.json - Raw strings (no quotes):
jq -r '.name' file.json - Convert to CSV:
jq -r '.[] | [.name, .value] | @csv' file.json
Signals
- GitHub stars
- 171
- Forks
- 5
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
json-tools- Source
- github.com/gebruder/wirken