mit einem Klick
json-tools
Parse, query, and transform JSON data
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Parse, query, and transform JSON data
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Security assessment of a codebase — minimal mode for runner validation
Daily fetch from a fixed public allowlist; score against the user's interests file; cluster into themes; push the digest to the configured channel
Read-only retrieval over the daily-digest kept set. Slash-invoke with `/librarian <question>`; returns items verbatim with citations.
Math calculations and unit conversions
Parse and analyze CSV data
Analyze disk usage and find large files
| name | json-tools |
| description | Parse, query, and transform JSON data |
| disable-model-invocation | false |
| metadata | {"wirken":{"requires":{"bins":["jq"]}}} |
| permissions | {"tools":{"allow":["exec"]},"egress":{"mode":"deny"},"inference":{"allow":["*"]}} |
Parse and transform JSON using jq.
echo '<json>' | jq .echo '<json>' | jq '.field'echo '<json>' | jq '.a.b.c'echo '<json>' | jq '.[0]'echo '<json>' | jq 'length'echo '<json>' | jq '{name: .name, id: .id}'echo '<json>' | jq '.[] | select(.status == "active")'echo '<json>' | jq '[.[] | .name]'echo '<json>' | jq 'sort_by(.date)'echo '<json>' | jq 'group_by(.type)'echo '<json>' | jq '[.[].category] | unique'jq '.key' file.jsonjq -c . file.jsonjq -r '.name' file.jsonjq -r '.[] | [.name, .value] | @csv' file.json