Skip to content

CLI patterns cookbook

This cookbook provides practical recipes for common command-line interface patterns using Optique. Each pattern demonstrates not just how to implement a specific feature, but the underlying principles that make it work, helping you understand how to adapt these techniques to your own applications.

The examples focus on real-world CLI patterns you'll encounter when building command-line tools: handling mutually exclusive options, implementing dependent flags, parsing key-value pairs, and organizing complex subcommand structures.

Subcommands with distinct behaviors

Many CLI tools organize functionality into subcommands, where each subcommand has its own set of options and arguments. This pattern is essential for tools that perform multiple related operations, like Git (git commit, git push) or Docker (docker run, docker build).

typescript
const 
addCommand
=
command
(
"add",
object
({
action
:
constant
("add"),
key
:
argument
(
string
({
metavar
: "KEY" })),
value
:
argument
(
string
({
metavar
: "VALUE" })),
}), ); const
removeCommand
=
command
(
"remove",
object
({
action
:
constant
("remove"),
key
:
argument
(
string
({
metavar
: "KEY" })),
}), ); const
editCommand
=
command
(
"edit",
object
({
action
:
constant
("edit"),
key
:
argument
(
string
({
metavar
: "KEY" })),
value
:
argument
(
string
({
metavar
: "VALUE" })),
}), ); const
listCommand
=
command
(
"list",
object
({
action
:
constant
("list"),
pattern
:
optional
(
option
("-p", "--pattern",
string
({
metavar
: "PATTERN" })),
), }), ); const
parser
=
or
(
addCommand
,
removeCommand
,
editCommand
,
listCommand
);
const
result
=
run
(
parser
);
// The result type consists of a discriminated union of all commands.

The key insight here is using or() to create a discriminated union of different command parsers. Each command() parser:

  1. Matches a specific keyword ("add", "remove", etc.) as the first argument
  2. Provides a unique type tag using constant() to distinguish commands in the result type
  3. Defines command-specific arguments that only apply to that particular command

The constant("add") pattern is crucial because it creates a literal type that TypeScript can use for exhaustive checking. When you handle the result, TypeScript knows exactly which fields are available based on the action value:

typescript
if (
result
.
action
=== "add") {
// TypeScript knows: result.key and result.value are available
console
.
log
(`Adding ${
result
.
key
}=${
result
.
value
}`);
} else if (
result
.
action
=== "remove") {
// TypeScript knows: only result.key is available
console
.
log
(`Removing ${
result
.
key
}`);
}

This pattern scales well because adding new subcommands only requires extending the or() combinator with new command parsers.

Mutually exclusive options

Sometimes you need to accept different sets of options that cannot be used together. This pattern is common in tools that can operate in different modes, where each mode requires its own configuration.

typescript
const 
parser
=
or
(
object
({
mode
:
constant
("server"),
host
:
withDefault
(
option
(
"-h", "--host",
string
({
metavar
: "HOST" }),
), "0.0.0.0", ),
port
:
option
(
"-p", "--port",
integer
({
metavar
: "PORT",
min
: 1,
max
: 0xffff }),
), }),
object
({
mode
:
constant
("client"),
url
:
argument
(
url
()),
}), ); const
result
=
run
(
parser
);
// The result type is a discriminated union of server and client modes.

This pattern uses or() at the parser level rather than just for individual flags. Each branch of the or() represents a complete, valid configuration:

Server mode
Requires --port option and accepts optional --host
Client mode
Requires a URL argument

The constant() combinator in each branch serves as a discriminator, making it easy to determine which mode was selected and what options are available. The type system prevents you from accidentally accessing client-only fields when in server mode.

The withDefault() wrapper ensures that optional fields have sensible defaults, but only within their respective modes. The client mode doesn't get a default host because it doesn't use one.

Mutually exclusive flags

For simpler cases where you need exactly one of several flags, you can use mutually exclusive flags that map to different values.

typescript
const 
modeParser
=
withDefault
(
or
(
map
(
option
("-a", "--mode-a"), () => "a" as
const
),
map
(
option
("-b", "--mode-b"), () => "b" as
const
),
map
(
option
("-c", "--mode-c"), () => "c" as
const
),
), "default" as
const
,
); const
result
=
run
(
modeParser
);
// The result type is a union of "a", "b", "c", or "default".

This pattern combines or() with map() to transform boolean flag presence into more meaningful values. Each option() parser only succeeds when its flag is present, and map() transforms the boolean result into a string literal.

The withDefault() wrapper handles the case where no flags are provided, giving you a fallback behavior. This is different from the previous pattern because:

  • No validation: Multiple flags can be provided (last one wins)
  • Simpler structure: Returns a simple string rather than an object
  • Default handling: Has a meaningful fallback when no options are given

Dependent options

Some CLI tools have options that only make sense when another option is present. This creates a dependency relationship where certain options are only valid in specific contexts.

typescript
const 
unionParser
=
withDefault
(
object
({
flag
:
flag
("-f", "--flag"),
dependentFlag
:
option
("-d", "--dependent-flag"),
dependentFlag2
:
option
("-D", "--dependent-flag-2"),
}), {
flag
: false as
const
} as
const
,
); const
parser
=
merge
(
unionParser
,
object
({
normalFlag
:
option
("-n", "--normal-flag"),
}), ); const
result
=
run
(
parser
);
// The result type enforces that dependentFlag and dependentFlag2 are only // available when flag is true.

This pattern uses conditional typing to enforce dependencies at compile time. The withDefault() combinator creates a union type where:

When flag: false
Only the main flag is available
When flag: true
Additional dependent options become available

This ensures that TypeScript prevents accessing dependent options unless the main flag is true. The merge() combinator allows you to combine the conditional parser with other independent options that are always available.

The key insight is that dependent options are often about context: when certain features are enabled, additional configuration becomes relevant.

Key–value pair options

Many CLI tools accept configuration as key–value pairs, similar to environment variables or configuration files. This pattern is common in containerization tools and configuration management systems.

typescript
/**
 * Custom value parser for key-value pairs with configurable separator
 */
function 
keyValue
(
separator
= "="):
ValueParser
<[string, string]> {
return {
metavar
: `KEY${
separator
}VALUE`,
parse
(
input
: string):
ValueParserResult
<[string, string]> {
const
index
=
input
.
indexOf
(
separator
);
if (
index
=== -1 ||
index
=== 0) {
return {
success
: false,
error
:
message
`Invalid format. Expected KEY${
text
(
separator
)
}VALUE, got ${
input
}`,
}; } const
key
=
input
.
slice
(0,
index
);
const
value
=
input
.
slice
(
index
+
separator
.
length
);
return {
success
: true,
value
: [
key
,
value
] };
},
format
([
key
,
value
]: [string, string]): string {
return `${
key
}${
separator
}${
value
}`;
}, }; } // Docker-style environment variables const
dockerParser
=
object
({
env
:
map
(
multiple
(
option
("-e", "--env",
keyValue
())),
(
pairs
) =>
Object
.
fromEntries
(
pairs
),
),
labels
:
map
(
multiple
(
option
("-l", "--label",
keyValue
(":"))),
(
pairs
) =>
Object
.
fromEntries
(
pairs
),
), }); // Kubernetes-style configuration const
k8sParser
=
object
({
set
:
map
(
multiple
(
option
("--set",
keyValue
())),
(
pairs
) =>
Object
.
fromEntries
(
pairs
),
),
values
:
map
(
multiple
(
option
("--values",
keyValue
(":"))),
(
pairs
) =>
Object
.
fromEntries
(
pairs
),
), }); const
parser
=
or
(
dockerParser
,
k8sParser
);
const
config
=
run
(
parser
);
if ("env" in
config
) {
// config.env and config.labels are now Record<string, string>
print
(
message
`Environment: ${
JSON
.
stringify
(
config
.
env
, null, 2)}`);
print
(
message
`Labels: ${
JSON
.
stringify
(
config
.
labels
, null, 2)}`);
} else { // config.set and config.values are now Record<string, string>
print
(
message
`Set: ${
JSON
.
stringify
(
config
.
set
, null, 2)}`);
print
(
message
`Values: ${
JSON
.
stringify
(
config
.
values
, null, 2)}`);
}

This pattern demonstrates several advanced techniques:

Custom value parser

The keyValue() function creates a reusable value parser that:

  • Validates format: Ensures the input contains the separator
  • Splits correctly: Handles the separator appearing in values
  • Provides meaningful errors: Shows expected format when parsing fails
  • Supports different separators: Configurable for different use cases

Multiple collection

Using multiple() allows collecting many key–value pairs:

bash
myapp -e DATABASE_URL=postgres://... -e DEBUG=true -l app:web -l version:1.0

Type transformation with map()

The example uses map() to transform the parsed [string, string][] array directly into a Record<string, string>.

This transformation happens at parse time, so your application receives structured objects rather than arrays of tuples. The type system correctly infers Record<string, string> for each field, providing better IDE support and type safety.

This pattern is powerful because it bridges the gap between command-line interfaces and structured configuration data.

Verbosity levels

Command-line tools often need different levels of output detail. The traditional Unix approach uses repeated flags: -v for verbose, -vv for very verbose, and so on.

typescript
const 
VERBOSITY_LEVELS
= ["debug", "info", "warning", "error"] as
const
;
const
verbosityParser
=
object
({
verbosity
:
map
(
multiple
(
option
("-v", "--verbose")),
(
v
) =>
VERBOSITY_LEVELS
.
at
(
-
Math
.
min
(
v
.
length
,
VERBOSITY_LEVELS
.
length
- 1) - 1,
)!, ), }); const
result
=
run
(
verbosityParser
);
print
(
message
`Verbosity level: ${
result
.
verbosity
}.`);

This pattern combines several concepts:

Repeated flag collection

multiple(option("-v", "--verbose")) collects all instances of the flag, creating an array of boolean values. Each occurrence adds another true to the array.

Length-based mapping

The map() transformation converts array length into verbosity levels:

  • -v["debug", "info", "warning", "error"].at(-1-1)"error"
  • -vv["debug", "info", "warning", "error"].at(-2-1)"warning"
  • -vvv["debug", "info", "warning", "error"].at(-3-1)"info"
  • -vvvv["debug", "info", "warning", "error"].at(-4-1)"debug"

The negative indexing with Array.at() creates an inverse relationship: more flags mean more verbose output (lower threshold). The Math.min() prevents going beyond the available levels.

This pattern is elegant because it:

  • Matches user expectations: More -v flags = more output
  • Has natural limits: Caps at maximum verbosity level
  • Fails gracefully: Extra flags don't cause errors

Grouped mutually exclusive options

When you have many mutually exclusive options, grouping them in help output improves usability while maintaining the same parsing logic.

typescript
const 
formatParser
=
withDefault
(
group
(
"Formatting options",
or
(
map
(
flag
("--json", {
description
:
message
`Use JSON format.` }),
() => "json" as
const
),
map
(
flag
("--yaml", {
description
:
message
`Use YAML format.` }),
() => "yaml" as
const
),
map
(
flag
("--toml", {
description
:
message
`Use TOML format.` }),
() => "toml" as
const
),
map
(
flag
("--xml", {
description
:
message
`Use XML format.` }),
() => "xml" as
const
),
), ), "json" as
const
,
); const
result
=
run
(
formatParser
, {
help
: "option" });
print
(
message
`Output format: ${
result
}.`);

This pattern introduces the group() combinator to organize related options in help output. The parsing logic is identical to the basic mutually exclusive flags pattern, but the help text is better organized:

Formatting options:
  --json                      Use JSON format.
  --yaml                      Use YAML format.
  --toml                      Use TOML format.
  --xml                       Use XML format.

The group() combinator is purely cosmetic for help generation—it doesn't change parsing behavior. This separation of concerns allows you to optimize for both code clarity and user experience independently.

Design principles

These patterns demonstrate several key principles for designing CLI parsers:

Composition over configuration

Instead of complex configuration objects, combine simple parsers using combinators like or(), merge(), and multiple(). Each combinator has a single, well-defined purpose.

Type-driven design

Use TypeScript's type system to enforce correct usage. Discriminated unions, conditional types, and literal types prevent runtime errors by catching mistakes at compile time.

Separation of concerns

Separate parsing logic from presentation logic. Use group() for help organization, withDefault() for fallback behavior, and map() for data transformation.

Progressive disclosure

Start with simple parsers and add complexity through composition. A basic flag becomes a mutually exclusive choice, which becomes a grouped set of options, which becomes part of a larger command structure.

Fail-safe defaults

Always consider what happens when optional inputs are missing. Use withDefault() to provide sensible fallbacks and optional() when absence is meaningful.

Advanced patterns

The cookbook patterns can be combined to create sophisticated CLI interfaces:

typescript
// Combining subcommands with dependent options and key-value pairs
const 
deployCommand
=
command
("deploy",
merge
(
object
({
action
:
constant
("deploy"),
environment
:
argument
(
string
()),
}),
withDefault
(
object
({
dryRun
:
flag
("--dry-run"),
vars
:
multiple
(
option
("--var",
keyValue
())),
confirm
:
option
("--confirm"),
}), {
dryRun
: false }
) ));

This creates a deploy command that:

  • Requires an environment argument
  • Supports key-value variables
  • Has optional dry-run mode
  • Uses dependent confirmation when not in dry-run mode

The patterns in this cookbook provide the building blocks for creating CLI interfaces that are both powerful and type-safe, with clear separation between parsing logic, type safety, and user experience.