Conventions for designing AND testing CLI output so it stays parseable and assertable - exit-code policy (0 success, non-zero failure with stable codes per failure mode), `stdout` for primary data / `stderr` for messages, `--json` / `--plain` for machine-readable output, deterministic ordering and timestamps, `NO_COLOR` / TTY-aware color, `-q` / `--verbose` discipline, and stable `--help` / `--version`. Built on the [Command Line Interface Guidelines][clig]. Use as the assertion contract for `bats-testing` (text CLIs) and to tell `tui-snapshot-tester` what does NOT need a snapshot.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Per clig:
"Send output to
stdout. The primary output for your command should go tostdout. Anything that is machine readable should also go tostdout.""Send messaging to
stderr. Log messages, errors, and so on should all be sent tostderr."
Tests can only assert on output that is stable, separated, and
documented. This skill defines those conventions; sister skills
(bats-testing,
tui-snapshot-tester) test
against them.
Per clig:
"Return zero exit code on success, non-zero on failure."
"Map non-zero codes to important failure modes for script integration."
Exit code | Meaning
----------+----------------------------
0 | Success
1 | General error (catch-all)
2 | Misuse (bad flag, bad usage)
3 | Resource not found
4 | Permission denied
5 | Network / external failure
... documented per CLITest pattern:
@test "exit 0 on success" {
run mycli list
[ "$status" -eq 0 ]
}
@test "exit 2 on bad flag" {
run mycli --nonexistent
[ "$status" -eq 2 ]
}Don't test [ "$status" -ne 0 ] - assert the specific code.
Otherwise refactors silently change the contract.
Per clig: "This separation ensures piped commands receive only data, not messages."
# Good: data on stdout, message on stderr
$ mycli list 2>/dev/null
alice
bob
$ mycli list >/dev/null
fetched 2 users in 0.3sTest pattern (bats):
@test "list emits names on stdout, status on stderr" {
run --separate-stderr mycli list
[ "$status" -eq 0 ]
[ "$output" = $'alice\nbob' ]
[[ "$stderr" == *"fetched 2 users"* ]]
}run --separate-stderr (Bats 1.5+) splits the streams; without
it, $output mixes both.
Per clig:
"Display output as formatted JSON if
--jsonis passed."
"If human-readable output breaks machine-readable output, use
--plainto display output in plain, tabular text format for integration with tools likegreporawk."
"Encourage your users to use
--plainor--jsonin scripts to keep output stable."
$ mycli list --json | jq '.[] | .name'
"alice"
"bob"
$ mycli list --plain
alice active 2026-04-15
bob active 2026-04-20Test pattern: assert against --json, never against the
human-formatted default. Human output is allowed to evolve;
JSON is the contract.
@test "list --json contract" {
run mycli list --json
assert_success
echo "$output" | jq -e '.[0] | has("name") and has("status")'
}Stable output for tests requires:
--verbose or
human-mode banner).--json /
--plain (no thousand separators; ISO 8601 dates).# Bad: randomized order, locale-dependent date
$ mycli list
bob 2026/04/20
alice 2026/04/15
# Good: sorted, ISO 8601
$ mycli list --plain
alice 2026-04-15
bob 2026-04-20Test pattern: golden-file comparison with sorted output.
--help/--version, documenting the contractThe remaining four conventions and their bats test patterns are in references/conventions-5-8.md.
| Anti-pattern | Why it fails | Fix |
|---|---|---|
Tests assert status -ne 0 | Refactors silently change error code; scripts break. | Assert specific code (Convention 1). |
| Errors on stdout | Pipes carry error text into downstream parsers. | stderr (Convention 2). |
| Tests assert against default human output | Human output evolves; tests churn. | Test against --json (Convention 3). |
| Timestamps in default output | Tests fail on every run. | Verbose-mode only (Convention 4). |
| ANSI codes leak when piped | wc -l, grep, etc. break. | TTY check + NO_COLOR (Convention 5). |
| Progress bars in CI | CI logs flooded; tests can't assert frame counts. | TTY check (Convention 5). |
| Help output requires network / config | --help should always work. | Help is local + static. |
--version mixed with marketing | Tooling can't parse. | Pure version string (Convention 7). |
--json / --plain, NO_COLOR, -q /
--verbose, --help / --version.https://no-color.org/ - NO_COLOR informal standard.--json output.bats-testing - Bash-based
assertion runner that consumes this contract.tui-snapshot-tester -
layout-level snapshots; this skill covers text-level contract.