dasel-reference
Installation
SKILL.md
dasel v3 Syntax Reference
Single-binary CLI for querying, modifying, and converting structured data. Replaces jq + yq + xmllint with one unified query syntax across all formats.
Stable version at writing (date: 2026-02-23): v3.2.3
Supported Formats
json, yaml, toml, xml, csv, hcl, ini
Basic Usage
# Query from stdin (format required)
echo '{"foo": "bar"}' | dasel -i json 'foo'
# Query from file via stdin
cat config.yaml | dasel -i yaml 'database.host'