Query, transform, and manipulate data files from the terminal — 14 commands, 8 formats, piping support.
Documentation · CLI Reference · Guide
npm install -g @safe-access-inline/clisafe-access get config.json "user.name"
safe-access get data.yaml "items.*.price" # wildcard
safe-access set config.json "user.email" "a@b.com" --to json # set & output
safe-access transform config.yaml --to json --pretty # convert formats
safe-access diff config.json config-updated.json # structural diff
safe-access mask config.json --patterns "password,secret,api_*" # redact secrets
safe-access layer defaults.yaml overrides.json --to json # merge layers
echo '{"a":1}' | safe-access get - "a" # stdin pipingFull command reference, piping examples, CI/CD recipes, and exit codes: safe-access-inline CLI docs →