Output Formats
By default, list/show commands print an aligned, colored table.
craftybase materials list --jsonPrints the full API envelope (pretty-printed). Pipe into jq:
craftybase materials list --json | jq '.materials[] | {id, name}'NDJSON (streaming, auto-paginated)
Section titled “NDJSON (streaming, auto-paginated)”craftybase materials list --ndjsonEmits one JSON object per line across all pages — ideal for pipelines. --json and --ndjson are mutually exclusive.
Color is on for interactive terminals and off when piped. Disable explicitly with --no-color or the NO_COLOR environment variable.