CLI for agents
Human-oriented CLIs often block agents: interactive prompts, huge upfront docs, and help text without copy-pasteable examples. Prefer patterns that work headlessly and compose in pipelines.
Non-interactive first
- Every input should be expressible as a flag or flag value. Do not require arrow keys, menus, or timed prompts.
- If flags are missing, then fall back to interactive mode—not the other way around.
Bad: mycli deploy → ? Which environment? (use arrow keys)
Good: mycli deploy --env staging
Discoverability without dumping context
- Agents discover subcommands incrementally:
mycli, then mycli deploy --help. Do not print the entire manual on every run.
- Let each subcommand own its documentation so unused commands stay out of context.
--help that works
- Every subcommand has
--help.
- Every
--help includes Examples with real invocations. Examples do more than prose for pattern-matching.
Options:
--env Target environment (staging, production)
--tag Image tag (default: latest)
--force Skip confirmation
Examples:
mycli deploy --env staging
mycli deploy --env production --tag v1.2.3
mycli deploy --env staging --force
stdin, flags, and pipelines
- Accept stdin where it makes sense (e.g.
cat config.json | mycli config import --stdin).
- Avoid odd positional ordering and avoid falling back to interactive prompts for missing values.
- Support chaining:
mycli deploy --env staging --tag $(mycli build --output tag-only).
Fail fast with actionable errors
- On missing required flags: exit immediately with a clear message and a correct example invocation, not a hang.
Error: No image tag specified.
mycli deploy --env staging --tag <image-tag>
Available tags: mycli build list --output tags
Idempotency
- Agents retry often. The same successful command run twice should be safe (no-op or explicit "already done"), not duplicate side effects.
Destructive actions
- Add
--dry-run (or equivalent) so agents can preview plans before committing.
- Offer
--yes / --force to skip confirmations while keeping the safe default for humans.
Predictable structure
- Use a consistent pattern everywhere, e.g.
resource + verb: if mycli service list exists, mycli deploy list and mycli config list should follow the same shape.
Success output
- On success, return machine-useful data: IDs, URLs, durations. Plain text is fine; avoid relying on decorative output alone.
deployed v1.2.3 to staging
url: https://staging.myapp.com
deploy_id: dep_abc123
duration: 34s
When reviewing an existing CLI
- Check: non-interactive path, layered help, examples on
--help, stdin/pipeline story, error messages with invocations, idempotency, dry-run, confirmation bypass flags, consistent command structure, structured success output.
1---2name: cli-for-agents3description: Designs or reviews CLIs so coding agents can run them reliably: non-interactive flags, layered --help with examples, stdin/pipelines, fast actionable errors, idempotency, dry-run, and predictable structure. Use when building a CLI, adding commands, writing --help, or when the user mentions agents, terminals, or automation-friendly CLIs.4---5
6# CLI for agents
7
8Human-oriented CLIs often block agents: interactive prompts, huge upfront docs, and help text without copy-pasteable examples. Prefer patterns that work headlessly and compose in pipelines.
9
10## Non-interactive first
11
12- Every input should be expressible as a flag or flag value. Do not require arrow keys, menus, or timed prompts.
13- If flags are missing, **then** fall back to interactive mode—not the other way around.
14
15**Bad:** `mycli deploy` → `? Which environment? (use arrow keys)`
16**Good:** `mycli deploy --env staging`
17
18## Discoverability without dumping context
19
20- Agents discover subcommands incrementally: `mycli`, then `mycli deploy --help`. Do not print the entire manual on every run.
21- Let each subcommand own its documentation so unused commands stay out of context.
22
23## `--help` that works
24
25- Every subcommand has `--help`.
26- Every `--help` includes **Examples** with real invocations. Examples do more than prose for pattern-matching.
27
28```text
29Options:
30 --env Target environment (staging, production)
31 --tag Image tag (default: latest)
32 --force Skip confirmation
33
34Examples:
35 mycli deploy --env staging
36 mycli deploy --env production --tag v1.2.3
37 mycli deploy --env staging --force
38```
39
40## stdin, flags, and pipelines
41
42- Accept stdin where it makes sense (e.g. `cat config.json | mycli config import --stdin`).
43- Avoid odd positional ordering and avoid falling back to interactive prompts for missing values.
44- Support chaining: `mycli deploy --env staging --tag $(mycli build --output tag-only)`.
45
46## Fail fast with actionable errors
47
48- On missing required flags: exit immediately with a clear message and a **correct example invocation**, not a hang.
49
50```text
51Error: No image tag specified.
52 mycli deploy --env staging --tag <image-tag>
53 Available tags: mycli build list --output tags
54```
55
56## Idempotency
57
58- Agents retry often. The same successful command run twice should be safe (no-op or explicit "already done"), not duplicate side effects.
59
60## Destructive actions
61
62- Add `--dry-run` (or equivalent) so agents can preview plans before committing.
63- Offer `--yes` / `--force` to skip confirmations while keeping the safe default for humans.
64
65## Predictable structure
66
67- Use a consistent pattern everywhere, e.g. `resource` + `verb`: if `mycli service list` exists, `mycli deploy list` and `mycli config list` should follow the same shape.
68
69## Success output
70
71- On success, return machine-useful data: IDs, URLs, durations. Plain text is fine; avoid relying on decorative output alone.
72
73```text
74deployed v1.2.3 to staging
75url: https://staging.myapp.com
76deploy_id: dep_abc123
77duration: 34s
78```
79
80## When reviewing an existing CLI
81
82- Check: non-interactive path, layered help, examples on `--help`, stdin/pipeline story, error messages with invocations, idempotency, dry-run, confirmation bypass flags, consistent command structure, structured success output.