CLI Developer
Core Workflow
- Analyze UX — Identify user workflows, command hierarchy, common tasks. Validate by listing all commands and their expected
--help output before writing code.
- Design commands — Plan subcommands, flags, arguments, configuration. Confirm flag naming is consistent and no existing signatures are broken.
- Implement — Build with the appropriate CLI framework for the language (see Reference Guide below). After wiring up commands, run
<cli> --help to verify help text renders correctly and <cli> --version to confirm version output.
- Polish — Add completions, help text, error messages, progress indicators. Verify TTY detection for color output and graceful SIGINT handling.
- Test — Run cross-platform smoke tests; benchmark startup time (target: <50ms).
Reference Guide
Load detailed guidance based on context:
| Topic |
Reference |
Load When |
| Design Patterns |
references/design-patterns.md |
Subcommands, flags, config, architecture |
| Node.js CLIs |
references/node-cli.md |
commander, yargs, inquirer, chalk |
| Python CLIs |
references/python-cli.md |
click, typer, argparse, rich |
| Go CLIs |
references/go-cli.md |
cobra, viper, bubbletea |
| UX Patterns |
references/ux-patterns.md |
Progress bars, colors, help text |
Quick-Start Example
Node.js (commander)
#!/usr/bin/env node
// npm install commander
const { program } = require('commander');
program
.name('mytool')
.description('Example CLI')
.version('1.0.0');
program
.command('greet <name>')
.description('Greet a user')
.option('-l, --loud', 'uppercase the greeting')
.action((name, opts) => {
const msg = `Hello, ${name}!`;
console.log(opts.loud ? msg.toUpperCase() : msg);
});
program.parse();
For Python (click/typer) and Go (cobra) quick-start examples, see references/python-cli.md and references/go-cli.md.
Constraints
MUST DO
- Keep startup time under 50ms
- Provide clear, actionable error messages
- Support
--help and --version flags
- Use consistent flag naming conventions
- Handle SIGINT (Ctrl+C) gracefully
- Validate user input early
- Support both interactive and non-interactive modes
- Test on Windows, macOS, and Linux
MUST NOT DO
- Block on synchronous I/O unnecessarily — use async reads or stream processing instead.
- Print to stdout when output will be piped — write logs/diagnostics to stderr.
- Use colors when output is not a TTY — detect before applying color:
// Node.js
const useColor = process.stdout.isTTY;
# Python
import sys
use_color = sys.stdout.isatty()
// Go
import "golang.org/x/term"
useColor := term.IsTerminal(int(os.Stdout.Fd()))
- Break existing command signatures — treat flag/subcommand renames as breaking changes.
- Require interactive input in CI/CD environments — always provide non-interactive fallbacks via flags or env vars.
- Hardcode paths or platform-specific logic — use
os.homedir() / os.UserHomeDir() / Path.home() instead.
- Ship without shell completions — all three frameworks above have built-in completion generation.
Output Templates
When implementing CLI features, provide:
- Command structure (main entry point, subcommands)
- Configuration handling (files, env vars, flags)
- Core implementation with error handling
- Shell completion scripts if applicable
- Brief explanation of UX decisions
Knowledge Reference
CLI frameworks (commander, yargs, oclif, click, typer, argparse, cobra, viper), terminal UI (chalk, inquirer, rich, bubbletea), testing (snapshot testing, E2E), distribution (npm, pip, homebrew, releases), performance optimization
1---2name: cli-developer3description: Use when building CLI tools, implementing argument parsing, or adding interactive prompts. Invoke for parsing flags and subcommands, displaying progress bars and spinners, generating bash/zsh/fish completion scripts, CLI design, shell completions, and cross-platform terminal applications using commander, click, typer, or cobra.4license: MIT5---67# CLI Developer89## Core Workflow10111. **Analyze UX** — Identify user workflows, command hierarchy, common tasks. Validate by listing all commands and their expected `--help` output before writing code.122. **Design commands** — Plan subcommands, flags, arguments, configuration. Confirm flag naming is consistent and no existing signatures are broken.133. **Implement** — Build with the appropriate CLI framework for the language (see Reference Guide below). After wiring up commands, run `<cli> --help` to verify help text renders correctly and `<cli> --version` to confirm version output.144. **Polish** — Add completions, help text, error messages, progress indicators. Verify TTY detection for color output and graceful SIGINT handling.155. **Test** — Run cross-platform smoke tests; benchmark startup time (target: <50ms).1617## Reference Guide1819Load detailed guidance based on context:2021| Topic | Reference | Load When |22|-------|-----------|-----------|23| Design Patterns | `references/design-patterns.md` | Subcommands, flags, config, architecture |24| Node.js CLIs | `references/node-cli.md` | commander, yargs, inquirer, chalk |25| Python CLIs | `references/python-cli.md` | click, typer, argparse, rich |26| Go CLIs | `references/go-cli.md` | cobra, viper, bubbletea |27| UX Patterns | `references/ux-patterns.md` | Progress bars, colors, help text |2829## Quick-Start Example3031### Node.js (commander)3233```js34#!/usr/bin/env node35// npm install commander36const { program } = require('commander');3738program39 .name('mytool')40 .description('Example CLI')41 .version('1.0.0');4243program44 .command('greet <name>')45 .description('Greet a user')46 .option('-l, --loud', 'uppercase the greeting')47 .action((name, opts) => {48 const msg = `Hello, ${name}!`;49 console.log(opts.loud ? msg.toUpperCase() : msg);50 });5152program.parse();53```5455For Python (click/typer) and Go (cobra) quick-start examples, see `references/python-cli.md` and `references/go-cli.md`.5657## Constraints5859### MUST DO60- Keep startup time under 50ms61- Provide clear, actionable error messages62- Support `--help` and `--version` flags63- Use consistent flag naming conventions64- Handle SIGINT (Ctrl+C) gracefully65- Validate user input early66- Support both interactive and non-interactive modes67- Test on Windows, macOS, and Linux6869### MUST NOT DO7071- **Block on synchronous I/O unnecessarily** — use async reads or stream processing instead.72- **Print to stdout when output will be piped** — write logs/diagnostics to stderr.73- **Use colors when output is not a TTY** — detect before applying color:74 ```js75 // Node.js76 const useColor = process.stdout.isTTY;77 ```78 ```python79 # Python80 import sys81 use_color = sys.stdout.isatty()82 ```83 ```go84 // Go85 import "golang.org/x/term"86 useColor := term.IsTerminal(int(os.Stdout.Fd()))87 ```88- **Break existing command signatures** — treat flag/subcommand renames as breaking changes.89- **Require interactive input in CI/CD environments** — always provide non-interactive fallbacks via flags or env vars.90- **Hardcode paths or platform-specific logic** — use `os.homedir()` / `os.UserHomeDir()` / `Path.home()` instead.91- **Ship without shell completions** — all three frameworks above have built-in completion generation.9293## Output Templates9495When implementing CLI features, provide:961. Command structure (main entry point, subcommands)972. Configuration handling (files, env vars, flags)983. Core implementation with error handling994. Shell completion scripts if applicable1005. Brief explanation of UX decisions101102## Knowledge Reference103104CLI frameworks (commander, yargs, oclif, click, typer, argparse, cobra, viper), terminal UI (chalk, inquirer, rich, bubbletea), testing (snapshot testing, E2E), distribution (npm, pip, homebrew, releases), performance optimization